Xray-examples/All-in-One-fallbacks-Nginx/client.configs/ShadowSocks-H2-TLS.json
uzziell e374ba0925
Added more combinations to All-in-One (#107)
* Added H2 for all protocols, SS-WS and SS-TCP

* added more comments to fallbacks

* update README.md

* added client link examples

* update README.md

* update README.md

* update README

* update README

* typo in domain name

* Switched to latest VISION flow - block private address access by default

* clean up nginx.conf

* added client configurations

* fixed typo in README.md

* client/server UUID mismatch
2023-01-10 23:35:01 -05:00

44 lines
919 B
JSON

{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "shadowsocks",
"settings": {
"servers": [
{
"address": "example.com", // Change to you own domain
"port": 443,
"method": "chacha20-ietf-poly1305",
"password": "desdemona99" // Change to you own password
}
]
},
"streamSettings": {
"network": "http",
"httpSettings": {
"path": "/ssh2"
},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome",
"alpn": ["h2"],
"serverName": "ssh2o.example.com" // Change to ssh2o.yourdomain.tld
}
}
}
]
}