This commit is contained in:
2026-05-16 00:18:06 -03:00
commit 92941e68a2
66 changed files with 10352 additions and 0 deletions

33
configs/xray.json Normal file
View File

@@ -0,0 +1,33 @@
{
"log": { "loglevel": "warning" },
"inbounds": [
{
"tag": "socks-in",
"port": 10808,
"listen": "127.0.0.1",
"protocol": "socks",
"settings": { "udp": true }
}
],
"outbounds": [
{
"tag": "proxy",
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "CHANGE_ME_HOST",
"port": 443,
"users": [ { "id": "CHANGE_ME_UUID", "encryption": "none" } ]
}
]
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings": { "serverName": "CHANGE_ME_SNI" }
}
},
{ "tag": "direct", "protocol": "freedom" }
]
}