mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
23 lines
341 B
Markdown
23 lines
341 B
Markdown
|
# Shadowsocks Client
|
||
|
|
||
|
```json
|
||
|
{
|
||
|
"inbounds": [
|
||
|
{
|
||
|
"type": "mixed",
|
||
|
"listen": "::",
|
||
|
"listen_port": 2080
|
||
|
}
|
||
|
],
|
||
|
"outbounds": [
|
||
|
{
|
||
|
"type": "shadowsocks",
|
||
|
"server": "::",
|
||
|
"server_port": 8080,
|
||
|
"method": "2022-blake3-aes-128-gcm",
|
||
|
"password": "8JCsPssfgS8tiRwiMlhARg=="
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
|
||
|
```
|