added client configurations

This commit is contained in:
uzziel 2023-01-10 14:36:12 +03:30
parent 7119323385
commit 8b3a577024
17 changed files with 752 additions and 0 deletions

View File

@ -0,0 +1,43 @@
{
"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
}
}
}
]
}

View File

@ -0,0 +1,46 @@
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "shadowsocks",
"settings": {
"servers": [
{
"address": "example.com",
"port": 443,
"method": "chacha20-ietf-poly1305",
"password": "desdemona99"
}
]
},
"streamSettings": {
"network": "tcp",
"tcpSettings": {
"header": {
"request": {
"path": ["/sstc"]
},
"type": "http"
}
},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome"
}
}
}
]
}

View File

@ -0,0 +1,41 @@
{
"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": "ws",
"wsSettings": {
"path": "/ssws"
},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome"
}
}
}
]
}

View File

@ -0,0 +1,41 @@
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "shadowsocks",
"settings": {
"servers": [
{
"address": "example.com",
"port": 443,
"method": "chacha20-ietf-poly1305",
"password": "desdemona99"
}
]
},
"streamSettings": {
"network": "grpc",
"grpcSettings": {
"serviceName": "ssgrpc"
},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome"
}
}
}
]
}

View File

@ -0,0 +1,42 @@
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "trojan",
"settings": {
"servers": [
{
"address": "example.com",
"port": 443,
"password": "desdemona99"
}
]
},
"streamSettings": {
"network": "http",
"httpSettings": {
"path": "/trh2"
},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome",
"alpn": ["h2"],
"serverName": "trh2o.example.com" // Change to ssh2o.yourdomain.tld
}
}
}
]
}

View File

@ -0,0 +1,38 @@
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "trojan",
"settings": {
"servers": [
{
"address": "example.com",
"port": 443,
"password": "desdemona99"
}
]
},
"streamSettings": {
"network": "tcp",
"tcpSettings": {},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome"
}
}
}
]
}

View File

@ -0,0 +1,40 @@
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "trojan",
"settings": {
"servers": [
{
"address": "example.com",
"port": 443,
"password": "desdemona99"
}
]
},
"streamSettings": {
"network": "ws",
"wsSettings": {
"path": "/trojanws"
},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome"
}
}
}
]
}

View File

@ -0,0 +1,40 @@
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "trojan",
"settings": {
"servers": [
{
"address": "example.com",
"port": 443,
"password": "desdemona99"
}
]
},
"streamSettings": {
"network": "grpc",
"grpcSettings": {
"serviceName": "trgrpc"
},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome"
}
}
}
]
}

View File

@ -0,0 +1,48 @@
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "vmess",
"settings": {
"vnext": [
{
"address": "example.com",
"port": 443,
"users": [
{
"id": "c7078656-944d-40d1-b0f6-f780f75d3cef",
"alterId": 0,
"security": "none"
}
]
}
]
},
"streamSettings": {
"network": "http",
"httpSettings": {
"path": "/vmh2"
},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome",
"alpn": ["h2"],
"serverName": "vmh2o.example.com" // Change to ssh2o.yourdomain.tld
}
}
}
]
}

View File

@ -0,0 +1,51 @@
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "vmess",
"settings": {
"vnext": [
{
"address": "example.com",
"port": 443,
"users": [
{
"id": "c7078656-944d-40d1-b0f6-f780f75d3cef",
"alterId": 0,
"security": "none"
}
]
}
]
},
"streamSettings": {
"network": "tcp",
"tcpSettings": {
"header": {
"request": {
"path": ["/vmtc"]
},
"type": "http"
}
},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome"
}
}
}
]
}

View File

@ -0,0 +1,46 @@
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "vmess",
"settings": {
"vnext": [
{
"address": "example.com",
"port": 443,
"users": [
{
"id": "c7078656-944d-40d1-b0f6-f780f75d3cef",
"alterId": 0,
"security": "none"
}
]
}
]
},
"streamSettings": {
"network": "ws",
"wsSettings": {
"path": "/vmws"
},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome"
}
}
}
]
}

View File

@ -0,0 +1,46 @@
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "vmess",
"settings": {
"vnext": [
{
"address": "example.com",
"port": 443,
"users": [
{
"id": "c7078656-944d-40d1-b0f6-f780f75d3cef",
"alterId": 0,
"security": "none"
}
]
}
]
},
"streamSettings": {
"network": "grpc",
"grpcSettings": {
"serviceName": "vmgrpc"
},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome"
}
}
}
]
}

View File

@ -0,0 +1,47 @@
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "example.com",
"port": 443,
"users": [
{
"id": "c7078656-944d-40d1-b0f6-f780f75d3cef",
"encryption": "none"
}
]
}
]
},
"streamSettings": {
"network": "http",
"httpSettings": {
"path": "/vlh2"
},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome",
"alpn": ["h2"],
"serverName": "vlh2o.example.com" // Change to ssh2o.yourdomain.tld
}
}
}
]
}

View File

@ -0,0 +1,50 @@
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "example.com",
"port": 443,
"users": [
{
"id": "c7078656-944d-40d1-b0f6-f780f75d3cef",
"encryption": "none"
}
]
}
]
},
"streamSettings": {
"network": "tcp",
"tcpSettings": {
"header": {
"request": {
"path": ["/vltc"]
},
"type": "http"
}
},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome"
}
}
}
]
}

View File

@ -0,0 +1,43 @@
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "example.com",
"port": 443,
"users": [
{
"id": "c7078656-944d-40d1-b0f6-f780f75d3cef",
"encryption": "none",
"flow": "xtls-rprx-vision"
}
]
}
]
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome"
}
}
}
]
}

View File

@ -0,0 +1,45 @@
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "example.com",
"port": 443,
"users": [
{
"id": "c7078656-944d-40d1-b0f6-f780f75d3cef",
"encryption": "none"
}
]
}
]
},
"streamSettings": {
"network": "ws",
"wsSettings": {
"path": "/vlws"
},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome"
}
}
}
]
}

View File

@ -0,0 +1,45 @@
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "example.com",
"port": 443,
"users": [
{
"id": "c7078656-944d-40d1-b0f6-f780f75d3cef",
"encryption": "none"
}
]
}
]
},
"streamSettings": {
"network": "grpc",
"grpcSettings": {
"serviceName": "vlgrpc"
},
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"fingerprint": "chrome"
}
}
}
]
}