-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
description: Clash 的 NTP 模块配置 | ||
--- | ||
# NTP 配置 | ||
## 示例 | ||
|
||
以下的拆分说明皆是 `NTP` 下的配置项 | ||
|
||
```yaml | ||
ntp: | ||
enable: true | ||
server: time.apple.com | ||
port: 123 | ||
interval: 30 | ||
``` | ||
## enable | ||
可选值 `true/false` | ||
|
||
是否启用 NTP 服务 | ||
|
||
```yaml | ||
ntp: | ||
enable: true | ||
``` | ||
|
||
## server | ||
|
||
NTP 服务地址,默认 time.apple.com | ||
|
||
## port | ||
|
||
NTP 服务端口,默认 123 | ||
|
||
## interval | ||
|
||
同步时间间隔,单位(分),默认同步间隔为 30 分 |