mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
47 lines
888 B
Markdown
47 lines
888 B
Markdown
# Introduction
|
|
|
|
sing-box uses JSON for configuration files.
|
|
|
|
### Structure
|
|
|
|
```json
|
|
{
|
|
"log": {},
|
|
"dns": {},
|
|
"ntp": {},
|
|
"inbounds": [],
|
|
"outbounds": [],
|
|
"route": {},
|
|
"experimental": {}
|
|
}
|
|
```
|
|
|
|
### Fields
|
|
|
|
| Key | Format |
|
|
|----------------|--------------------------------|
|
|
| `log` | [Log](./log) |
|
|
| `dns` | [DNS](./dns) |
|
|
| `ntp` | [NTP](./ntp) |
|
|
| `inbounds` | [Inbound](./inbound) |
|
|
| `outbounds` | [Outbound](./outbound) |
|
|
| `route` | [Route](./route) |
|
|
| `experimental` | [Experimental](./experimental) |
|
|
|
|
### Check
|
|
|
|
```bash
|
|
sing-box check
|
|
```
|
|
|
|
### Format
|
|
|
|
```bash
|
|
sing-box format -w -c config.json -D config_directory
|
|
```
|
|
|
|
### Merge
|
|
|
|
```bash
|
|
sing-box merge output.json -c config.json -D config_directory
|
|
``` |