mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
61 lines
873 B
Markdown
61 lines
873 B
Markdown
---
|
|
icon: material/new-box
|
|
---
|
|
|
|
!!! question "Since sing-box 1.12.0"
|
|
|
|
### Structure
|
|
|
|
```json
|
|
{
|
|
"type": "anytls",
|
|
"tag": "anytls-out",
|
|
|
|
"server": "127.0.0.1",
|
|
"server_port": 1080,
|
|
"password": "8JCsPssfgS8tiRwiMlhARg==",
|
|
"idle_session_check_interval": "30s",
|
|
"idle_session_timeout": "30s",
|
|
"tls": {},
|
|
|
|
... // Dial Fields
|
|
}
|
|
```
|
|
|
|
### Fields
|
|
|
|
#### server
|
|
|
|
==Required==
|
|
|
|
The server address.
|
|
|
|
#### server_port
|
|
|
|
==Required==
|
|
|
|
The server port.
|
|
|
|
#### password
|
|
|
|
==Required==
|
|
|
|
The AnyTLS password.
|
|
|
|
#### idle_session_check_interval
|
|
|
|
Interval checking for idle sessions. Default: 30s.
|
|
|
|
#### idle_session_timeout
|
|
|
|
In the check, close sessions that have been idle for longer than this. Default: 30s.
|
|
|
|
#### tls
|
|
|
|
==Required==
|
|
|
|
TLS configuration, see [TLS](/configuration/shared/tls/#outbound).
|
|
|
|
### Dial Fields
|
|
|
|
See [Dial Fields](/configuration/shared/dial/) for details.
|