Add log and dns documentation

This commit is contained in:
世界
2022-07-08 17:01:38 +08:00
parent 3699a57847
commit d6d02b9924
13 changed files with 442 additions and 1 deletions

View File

@@ -0,0 +1,40 @@
### Structure
```json
{
"dns": {
"servers": [],
"rules": [],
"final": "",
"strategy": "prefer_ipv6",
"disable_cache": false,
"disable_expire": false
}
}
```
### Fields
| Key | Format |
|----------|--------------------------------|
| `server` | List of [DNS Server](./server) |
| `rules` | List of [DNS Rule](./rule) |
#### final
Default dns server tag, the first one will be used if it is empty.
#### strategy
Default domain strategy for resolving the domain names.
One of `prefer_ipv4` `prefer_ipv6` `ipv4_only` `ipv6_only`.
#### disable_cache
Disable dns cache.
#### disable_expire
Disable dns cache expire.