[Proxy] Don't track xray config.json (survives deploys); add config.json.example
CI/CD / CI · dotnet build (push) Successful in 1m55s
CI/CD / Deploy · hamkadr (push) Failing after 34s

The real Xray VPN config held credentials and was overwritten by git checkout on every deploy. Untrack it + gitignore it + ship config.json.example as the template, so the server-side config persists across redeploys.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
soroush.asadi
2026-06-08 06:45:01 +03:30
parent da6e86fa7f
commit 5f769b0293
3 changed files with 9 additions and 3 deletions
+53
View File
@@ -0,0 +1,53 @@
{
"log": { "loglevel": "warning" },
"inbounds": [
{
"tag": "socks-in",
"listen": "0.0.0.0",
"port": 10808,
"protocol": "socks",
"settings": { "udp": true, "auth": "noauth" }
},
{
"tag": "http-in",
"listen": "0.0.0.0",
"port": 10809,
"protocol": "http"
}
],
"outbounds": [
{
"//": "REPLACE this whole outbound with YOUR vmess / vless / trojan config.",
"//vmess-example": "see deploy/xray/README.md for vmess & trojan templates",
"tag": "proxy",
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "YOUR_SERVER_ADDRESS",
"port": 443,
"users": [
{
"id": "YOUR_UUID",
"encryption": "none",
"flow": ""
}
]
}
]
},
"streamSettings": {
"network": "ws",
"security": "tls",
"tlsSettings": { "serverName": "YOUR_SNI" },
"wsSettings": { "path": "/", "headers": { "Host": "YOUR_SNI" } }
}
},
{ "tag": "direct", "protocol": "freedom" }
],
"routing": {
"rules": [
{ "type": "field", "inboundTag": ["socks-in", "http-in"], "outboundTag": "proxy" }
]
}
}