Add shadowsocks 2022 udp over tcp example

This commit is contained in:
世界 2022-06-01 11:21:40 +08:00
parent dd47d2c8ee
commit 187bd619e4
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -87,6 +87,42 @@
}
```
客户端 JSON (UDP over TCP)
```json
{
"inbounds": [
{
"port": 10801,
"protocol": "socks",
"settings": {
"udp": true
}
},
{
"port": 10802,
"protocol": "http"
}
],
"outbounds": [
{
"protocol": "shadowsocks",
"settings": {
"servers": [
{
"address": "{{ host }}",
"port": 1234,
"method": "2022-blake3-aes-128-gcm",
"password": "{{ psk }}",
"uot": true
}
]
}
}
]
}
```
客户端 JSON (多用户)
```json