diff --git a/V5-Shadowsocks-TCP/client.json b/V5-Shadowsocks-TCP/client.json new file mode 100644 index 0000000..6b0402a --- /dev/null +++ b/V5-Shadowsocks-TCP/client.json @@ -0,0 +1,45 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "127.0.0.1", + "port": "10808", + "protocol": "socks", + "settings": { + "udpEnabled": true, + "address": "127.0.0.1" + } + }, + { + "listen": "127.0.0.1", + "port": "10809", + "protocol": "http" + } + ], + "outbounds": [ + { + "protocol": "shadowsocks", + "settings": { + "address": "{{ host }}", + "port": 1234, + "method": "chacha20-ietf-poly1305", + "password": "{{ password}}" + }, + "streamSettings": { + "transport": "tcp" + }, + "tag": "proxy" + }, + { + "protocol": "freedom", + "tag": "direct" + } + ] +} \ No newline at end of file diff --git a/V5-Shadowsocks-TCP/server.json b/V5-Shadowsocks-TCP/server.json new file mode 100644 index 0000000..ca48f04 --- /dev/null +++ b/V5-Shadowsocks-TCP/server.json @@ -0,0 +1,34 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "0.0.0.0", + "port": 1234, + "protocol": "shadowsocks", + "settings": { + "method": "chacha20-ietf-poly1305", + "password": "{{ password }}" + }, + "streamSettings": { + "transport": "tcp" + } + } + ], + "outbounds": [ + { + "protocol": "freedom", + "tag": "direct" + }, + { + "protocol": "blackhole", + "tag": "block" + } + ] +} diff --git a/V5-Shadowsocks-Websocket-Web-TLS/Domainsocket-or-Redirect-Approach/config_server_domainsocket.json b/V5-Shadowsocks-Websocket-Web-TLS/Domainsocket-or-Redirect-Approach/config_server_domainsocket.json new file mode 100644 index 0000000..2e66b07 --- /dev/null +++ b/V5-Shadowsocks-Websocket-Web-TLS/Domainsocket-or-Redirect-Approach/config_server_domainsocket.json @@ -0,0 +1,81 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "routing": { + "domainStrategy": "AsIs", + "rules": [ + { + "type": "field", + "inboundTag": "wsdoko", + "outboundTag": "ssmux" + } + ] + }, + "inbounds": [ + { + "port": 10000, + "listen": "127.0.0.1", + "protocol": "dokodemo-door", + "tag": "wsdoko", + "settings": { + "address": "v1.mux.cool", + "followRedirect": false, + "network": "tcp, udp" + }, + "sniffing": { + "enabled": true, + "destOverride": [ + "http", + "tls" + ] + }, + "streamSettings": { + "transport": "ws", + "transportSettings": { + "path": "/path" + } + } + }, + { + "port": 9000, + "protocol": "shadowsocks", + "settings": { + "method": "chacha20-ietf-poly1305", + "ota": false, + "password": "ifYouWantToKeepYourPassphraseSafeChangeThis!!", + "network": "tcp,udp" + }, + "streamSettings": { + "transport": "domainsocket" + } + } + ], + "outbounds": [ + { + "protocol": "freedom", + "settings": {}, + "tag": "direct" + }, + { + "protocol": "blackhole", + "settings": {}, + "tag": "blocked" + }, + { + "protocol": "freedom", + "tag": "ssmux", + "streamSettings": { + "network": "domainsocket" + } + } + ], + "dsSettings": { + "path": "/var/run/ss-loop/ss-loop.sock" + } +} diff --git a/V5-Shadowsocks-Websocket-Web-TLS/Domainsocket-or-Redirect-Approach/config_server_redirect.json b/V5-Shadowsocks-Websocket-Web-TLS/Domainsocket-or-Redirect-Approach/config_server_redirect.json new file mode 100644 index 0000000..d36a98b --- /dev/null +++ b/V5-Shadowsocks-Websocket-Web-TLS/Domainsocket-or-Redirect-Approach/config_server_redirect.json @@ -0,0 +1,74 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "router": { + "domainStrategy": "AsIs", + "rule": [ + { + "inboundTag": "wsdoko", + "tag": "ssredirect" + } + ] + }, + "inbounds": [ + { + "port": 10000, + "listen": "127.0.0.1", + "protocol": "dokodemo-door", + "tag": "wsdoko", + "settings": { + "address": "v1.mux.cool", + "followRedirect": false, + "network": "tcp, udp" + }, + "sniffing": { + "enabled": true, + "destOverride": [ + "http", + "tls" + ] + }, + "streamSettings": { + "transport": "ws", + "transportSettings": { + "path": "/path" + } + } + }, + { + "port": 9000, + "protocol": "shadowsocks", + "settings": { + "method": "chacha20-ietf-poly1305", + "ota": false, + "password": "ifYouWantToKeepYourPassphraseSafeChangeThis!!", + "network": "tcp,udp" + } + } + ], + "outbounds": [ + { + "protocol": "freedom", + "settings": {}, + "tag": "direct" + }, + { + "protocol": "blackhole", + "settings": {}, + "tag": "blocked" + }, + { + "protocol": "freedom", + "tag": "ssredirect", + "settings": { + "redirect": "127.0.0.1:9000" + } + } + ] +} diff --git a/V5-Shadowsocks-Websocket-Web-TLS/config_client.json b/V5-Shadowsocks-Websocket-Web-TLS/config_client.json new file mode 100644 index 0000000..fd34479 --- /dev/null +++ b/V5-Shadowsocks-Websocket-Web-TLS/config_client.json @@ -0,0 +1,49 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "127.0.0.1", + "port": "10808", + "protocol": "socks", + "settings": { + "udpEnabled": true, + "address": "127.0.0.1" + } + }, + { + "listen": "127.0.0.1", + "port": "10809", + "protocol": "http" + } + ], + "outbounds": [ + { + "protocol": "shadowsocks", + "settings": { + "address": "{{ host }}", + "port": 443, + "method": "chacha20-ietf-poly1305", + "password": "{{ password }}" + }, + "streamSettings": { + "transport": "ws", + "security": "tls", + "transportSettings": { + "path": "/path" + } + }, + "tag": "proxy" + }, + { + "protocol": "freedom", + "tag": "direct" + } + ] +} \ No newline at end of file diff --git a/V5-Shadowsocks-Websocket-Web-TLS/config_server.json b/V5-Shadowsocks-Websocket-Web-TLS/config_server.json new file mode 100644 index 0000000..297813a --- /dev/null +++ b/V5-Shadowsocks-Websocket-Web-TLS/config_server.json @@ -0,0 +1,37 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "127.0.0.1", + "port": 10000, + "protocol": "shadowsocks", + "settings": { + "method": "chacha20-ietf-poly1305", + "password": "{{ password }}" + }, + "streamSettings": { + "transport": "ws", + "transportSettings": { + "path": "/path" + } + } + } + ], + "outbounds": [ + { + "protocol": "freedom", + "tag": "direct" + }, + { + "protocol": "blackhole", + "tag": "block" + } + ] +} \ No newline at end of file diff --git a/V5-Shadowsocks-gRPC-Web-TLS/config_client.json b/V5-Shadowsocks-gRPC-Web-TLS/config_client.json new file mode 100644 index 0000000..6d27584 --- /dev/null +++ b/V5-Shadowsocks-gRPC-Web-TLS/config_client.json @@ -0,0 +1,49 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "127.0.0.1", + "port": "10808", + "protocol": "socks", + "settings": { + "udpEnabled": true, + "address ": "127.0.0.1" + } + }, + { + "listen": "127.0.0.1", + "port": "10809", + "protocol": "http" + } + ], + "outbounds": [ + { + "protocol": "shadowsocks", + "settings": { + "address": "{{ host }}", + "port": 443, + "method": "chacha20-ietf-poly1305", + "password": "{{ password }}" + }, + "streamSettings": { + "transport": "grpc", + "security": "tls", + "transportSettings": { + "serviceName": "michi" + } + }, + "tag": "proxy" + }, + { + "protocol": "freedom", + "tag": "direct" + } + ] +} \ No newline at end of file diff --git a/V5-Shadowsocks-gRPC-Web-TLS/config_server.json b/V5-Shadowsocks-gRPC-Web-TLS/config_server.json new file mode 100644 index 0000000..4e16c83 --- /dev/null +++ b/V5-Shadowsocks-gRPC-Web-TLS/config_server.json @@ -0,0 +1,37 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "127.0.0.1", + "port": 12345, + "protocol": "shadowsocks", + "settings": { + "method": "chacha20-ietf-poly1305", + "password": "{{ password }}" + }, + "streamSettings": { + "transport": "grpc", + "transportSettings": { + "serviceName": "michi" + } + } + } + ], + "outbounds": [ + { + "protocol": "freedom", + "tag": "direct" + }, + { + "protocol": "blackhole", + "tag": "block" + } + ] +} \ No newline at end of file diff --git a/V5-Socks5-TLS/config_client.json b/V5-Socks5-TLS/config_client.json new file mode 100644 index 0000000..e598cc9 --- /dev/null +++ b/V5-Socks5-TLS/config_client.json @@ -0,0 +1,47 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "127.0.0.1", + "port": "10808", + "protocol": "socks", + "settings": { + "udpEnabled": true, + "address": "127.0.0.1" + } + }, + { + "listen": "127.0.0.1", + "port": "10809", + "protocol": "http" + } + ], + "outbounds": [ + { + "protocol": "socks", + "settings": { + "address": "", + "port": 1234 + }, + "streamSettings": { + "transport": "tcp", + "security": "tls", + "securitySettings": { + "serverName": "example.domain" + } + }, + "tag": "proxy" + }, + { + "protocol": "freedom", + "tag": "direct" + } + ] +} diff --git a/V5-Socks5-TLS/config_server.json b/V5-Socks5-TLS/config_server.json new file mode 100644 index 0000000..cce0734 --- /dev/null +++ b/V5-Socks5-TLS/config_server.json @@ -0,0 +1,43 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "0.0.0.0", + "port": 1234, + "protocol": "socks", + "settings": { + "udpEnabled": true, + "address": "127.0.0.1" + }, + "streamSettings": { + "transport": "tcp", + "security": "tls", + "securitySettings": { + "certificate": [ + { + "certificateFile": "/path/to/certificate.crt", + "keyFile": "/path/to/key.key" + } + ] + } + } + } + ], + "outbounds": [ + { + "protocol": "freedom", + "tag": "direct" + }, + { + "protocol": "blackhole", + "tag": "block" + } + ] +} diff --git a/V5-Trojan-TCP-TLS (minimal)/config_client.json b/V5-Trojan-TCP-TLS (minimal)/config_client.json new file mode 100644 index 0000000..b62db26 --- /dev/null +++ b/V5-Trojan-TCP-TLS (minimal)/config_client.json @@ -0,0 +1,34 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "port": 10800, + "address": "127.0.0.1", + "protocol": "socks", + "settings": { + "udpEnabled": true + } + } + ], + "outbounds": [ + { + "protocol": "trojan", + "settings": { + "address": "example.com", + "port": 443, + "password": "your password" + }, + "streamSettings": { + "transport": "tcp", + "security": "tls" + } + } + ] +} \ No newline at end of file diff --git a/V5-Trojan-TCP-TLS (minimal)/config_server.json b/V5-Trojan-TCP-TLS (minimal)/config_server.json new file mode 100644 index 0000000..b54fad8 --- /dev/null +++ b/V5-Trojan-TCP-TLS (minimal)/config_server.json @@ -0,0 +1,42 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "port": 443, + "protocol": "trojan", + "settings": { + "users": [ + "your password1", + "your password2" + ] + }, + "streamSettings": { + "transport": "tcp", + "security": "tls", + "securitySettings": { + "nextProtocol": [ + "http/1.1" + ], + "certificate": [ + { + "certificateFile": "/path/to/fullchain.crt", + "keyFile": "/path/to/private.key" + } + ] + } + } + } + ], + "outbounds": [ + { + "protocol": "freedom" + } + ] +} \ No newline at end of file diff --git a/V5-VLESS-H2C-Caddy2/client.json b/V5-VLESS-H2C-Caddy2/client.json new file mode 100644 index 0000000..de4ae18 --- /dev/null +++ b/V5-VLESS-H2C-Caddy2/client.json @@ -0,0 +1,53 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "port": "10808", + "protocol": "socks", + "settings": { + "udpEnabled": true + } + }, + { + "port": "10809", + "protocol": "http" + } + ], + "outbounds": [ + { + "protocol": "vless", + "settings": { + "address": "xx.com", + "port": 443, + "uuid": "your UUID" + }, + "streamSettings": { + "transport": "h2", + "security": "tls", + "transportSettings": { + "host": [ + "xx.com" + ], + "path": "/path" + } + } + }, + { + "tag": "direct", + "protocol": "freedom", + "settings": {} + }, + { + "tag": "blocked", + "protocol": "blackhole", + "settings": {} + } + ] +} diff --git a/V5-VLESS-H2C-Caddy2/server.json b/V5-VLESS-H2C-Caddy2/server.json new file mode 100644 index 0000000..f055564 --- /dev/null +++ b/V5-VLESS-H2C-Caddy2/server.json @@ -0,0 +1,45 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "port": 2001, + "listen": "127.0.0.1", + "protocol": "vless", + "settings": { + "users": [ + "UUID1", + "UUID2" + ] + }, + "streamSettings": { + "security": "none", + "transport": "h2", + "transportSettings": { + "path": "/path", + "host": [ + "xx.com" + ] + } + } + } + ], + "outbounds": [ + { + "tag": "direct", + "protocol": "freedom", + "settings": {} + }, + { + "tag": "blocked", + "protocol": "blackhole", + "settings": {} + } + ] +} diff --git a/V5-VLESS-gRPC-TLS/config_client.json b/V5-VLESS-gRPC-TLS/config_client.json new file mode 100644 index 0000000..a1d5f7e --- /dev/null +++ b/V5-VLESS-gRPC-TLS/config_client.json @@ -0,0 +1,45 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "127.0.0.1", + "port": "10808", + "protocol": "socks" + }, + { + "listen": "127.0.0.1", + "port": "10809", + "protocol": "http" + } + ], + "outbounds": [ + { + "protocol": "vless", + "settings": { + "address": "your_server_ip", + "port": 443, + "uuid": "your UUID" + }, + "streamSettings": { + "transport": "gun", + "security": "tls", + "securitySettings": { + "serverName": "your_domain", + "nextProtocol": [ + "h2" + ] + }, + "transportSettings": { + "serviceName": "GunService" + } + } + } + ] +} \ No newline at end of file diff --git a/V5-VLESS-gRPC-TLS/config_server.json b/V5-VLESS-gRPC-TLS/config_server.json new file mode 100644 index 0000000..44a8fd6 --- /dev/null +++ b/V5-VLESS-gRPC-TLS/config_server.json @@ -0,0 +1,48 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "0.0.0.0", + "port": 443, + "protocol": "vless", + "settings": { + "users ": [ + "UUID1", + "UUID2" + ] + }, + "streamSettings": { + "transport": "gun", + "security": "tls", + "securitySettings": { + "serverName": "your_domain", + "nextProtocol": [ + "h2" + ], + "certificate": [ + { + "certificateFile": "/path/to/fullchain.crt", + "keyFile": "/path/to/private.key" + } + ] + }, + "transportSettings": { + "serviceName": "GunService" + } + } + } + ], + "outbounds": [ + { + "protocol": "freedom", + "tag": "direct" + } + ] +} \ No newline at end of file diff --git a/V5-VLESS-mKCPSeed/config_client.json b/V5-VLESS-mKCPSeed/config_client.json new file mode 100644 index 0000000..8d42d90 --- /dev/null +++ b/V5-VLESS-mKCPSeed/config_client.json @@ -0,0 +1,41 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "port": 10808, + "listen": "127.0.0.1", + "protocol": "socks", + "settings": { + "udpEnabled": true + } + }, + { + "port": 10809, + "listen": "127.0.0.1", + "protocol": "http" + } + ], + "outbounds": [ + { + "protocol": "vless", + "settings": { + "address": "{{ host }}", + "port": "{{ port }}", + "uuid": "your UUID" + }, + "streamSettings": { + "transport": "kcp", + "transportSettings": { + "seed": "{{ seed }}" + } + } + } + ] +} \ No newline at end of file diff --git a/V5-VLESS-mKCPSeed/config_server.json b/V5-VLESS-mKCPSeed/config_server.json new file mode 100644 index 0000000..e82f643 --- /dev/null +++ b/V5-VLESS-mKCPSeed/config_server.json @@ -0,0 +1,33 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "protocol": "vless", + "port": "{{ port }}", + "settings": { + "users": [ + "UUID1", + "UUID2" + ] + }, + "streamSettings": { + "transport": "kcp", + "transportSettings": { + "seed": "{{ seed }}" + } + } + } + ], + "outbounds": [ + { + "protocol": "freedom" + } + ] +} diff --git a/V5-VMess-HTTP2/config_client.json b/V5-VMess-HTTP2/config_client.json new file mode 100644 index 0000000..052f04f --- /dev/null +++ b/V5-VMess-HTTP2/config_client.json @@ -0,0 +1,45 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "127.0.0.1", + "port": "10808", + "protocol": "socks", + "settings": { + "udpEnabled": true, + "address": "127.0.0.1" + } + }, + { + "listen": "127.0.0.1", + "port": "10809", + "protocol": "http" + } + ], + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "address": "", + "port": 1234, + "uuid": "your UUID" + }, + "streamSettings": { + "transport": "http", + "security": "tls" + }, + "tag": "proxy" + }, + { + "protocol": "freedom", + "tag": "direct" + } + ] +} diff --git a/V5-VMess-HTTP2/config_server.json b/V5-VMess-HTTP2/config_server.json new file mode 100644 index 0000000..8c3ecb6 --- /dev/null +++ b/V5-VMess-HTTP2/config_server.json @@ -0,0 +1,45 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "0.0.0.0", + "port": 1234, + "protocol": "vmess", + "settings": { + "users": [ + "UUID1", + "UUID2" + ] + }, + "streamSettings": { + "transport": "http", + "security": "tls", + "securitySettings": { + "certificate": [ + { + "certificateFile": "/path/to/certificate.crt", + "keyFile": "/path/to/key.key" + } + ] + } + } + } + ], + "outbounds": [ + { + "protocol": "freedom", + "tag": "direct" + }, + { + "protocol": "blackhole", + "tag": "block" + } + ] +} diff --git a/V5-VMess-TCP-TLS/config_client.json b/V5-VMess-TCP-TLS/config_client.json new file mode 100644 index 0000000..61b8f3a --- /dev/null +++ b/V5-VMess-TCP-TLS/config_client.json @@ -0,0 +1,45 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "127.0.0.1", + "port": "10808", + "protocol": "socks", + "settings": { + "udpEnabled": true, + "address": "127.0.0.1" + } + }, + { + "listen": "127.0.0.1", + "port": "10809", + "protocol": "http" + } + ], + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "address": "", + "port": 1234, + "uuid": "your UUID" + }, + "streamSettings": { + "transport": "tcp", + "security": "tls" + }, + "tag": "proxy" + }, + { + "protocol": "freedom", + "tag": "direct" + } + ] +} diff --git a/V5-VMess-TCP-TLS/config_server.json b/V5-VMess-TCP-TLS/config_server.json new file mode 100644 index 0000000..6d22f8d --- /dev/null +++ b/V5-VMess-TCP-TLS/config_server.json @@ -0,0 +1,45 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "0.0.0.0", + "port": 1234, + "protocol": "vmess", + "settings": { + "users": [ + "UUID1", + "UUID2" + ] + }, + "streamSettings": { + "transport": "tcp", + "security": "tls", + "securitySettings": { + "certificate": [ + { + "certificateFile": "/path/to/certificate.crt", + "keyFile": "/path/to/key.key" + } + ] + } + } + } + ], + "outbounds": [ + { + "protocol": "freedom", + "tag": "direct" + }, + { + "protocol": "blackhole", + "tag": "block" + } + ] +} diff --git a/V5-VMess-TCP/config_client.json b/V5-VMess-TCP/config_client.json new file mode 100644 index 0000000..638c1d1 --- /dev/null +++ b/V5-VMess-TCP/config_client.json @@ -0,0 +1,44 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "127.0.0.1", + "port": "10808", + "protocol": "socks", + "settings": { + "udpEnabled": true, + "address": "127.0.0.1" + } + }, + { + "listen": "127.0.0.1", + "port": "10809", + "protocol": "http" + } + ], + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "address": "", + "port": 1234, + "uuid": "your UUID" + }, + "streamSettings": { + "transport": "tcp" + }, + "tag": "proxy" + }, + { + "protocol": "freedom", + "tag": "direct" + } + ] +} \ No newline at end of file diff --git a/V5-VMess-TCP/config_server.json b/V5-VMess-TCP/config_server.json new file mode 100644 index 0000000..d9aafb1 --- /dev/null +++ b/V5-VMess-TCP/config_server.json @@ -0,0 +1,36 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "0.0.0.0", + "port": 1234, + "protocol": "vmess", + "settings": { + "users": [ + "UUID1", + "UUID2" + ] + }, + "streamSettings": { + "transport": "tcp" + } + } + ], + "outbounds": [ + { + "protocol": "freedom", + "tag": "direct" + }, + { + "protocol": "blackhole", + "tag": "block" + } + ] +} diff --git a/V5-VMess-Websocket-TLS/config_client.json b/V5-VMess-Websocket-TLS/config_client.json new file mode 100644 index 0000000..0c3ac0b --- /dev/null +++ b/V5-VMess-Websocket-TLS/config_client.json @@ -0,0 +1,45 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "127.0.0.1", + "port": "10808", + "protocol": "socks", + "settings": { + "udpEnabled": true, + "address": "127.0.0.1" + } + }, + { + "listen": "127.0.0.1", + "port": "10809", + "protocol": "http" + } + ], + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "address": "", + "port": 1234, + "uuid": "your UUID" + }, + "streamSettings": { + "transport": "ws", + "security": "tls" + }, + "tag": "proxy" + }, + { + "protocol": "freedom", + "tag": "direct" + } + ] +} diff --git a/V5-VMess-Websocket-TLS/config_server.json b/V5-VMess-Websocket-TLS/config_server.json new file mode 100644 index 0000000..72d9ccf --- /dev/null +++ b/V5-VMess-Websocket-TLS/config_server.json @@ -0,0 +1,45 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "0.0.0.0", + "port": 1234, + "protocol": "vmess", + "settings": { + "users": [ + "UUID1", + "UUID2" + ] + }, + "streamSettings": { + "transport": "ws", + "security": "tls", + "securitySettings": { + "certificate": [ + { + "certificateFile": "/path/to/certificate.crt", + "keyFile": "/path/to/key.key" + } + ] + } + } + } + ], + "outbounds": [ + { + "protocol": "freedom", + "tag": "direct" + }, + { + "protocol": "blackhole", + "tag": "block" + } + ] +} diff --git a/V5-VMess-Websocket/config_client.json b/V5-VMess-Websocket/config_client.json new file mode 100644 index 0000000..4abd136 --- /dev/null +++ b/V5-VMess-Websocket/config_client.json @@ -0,0 +1,44 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "127.0.0.1", + "port": "10808", + "protocol": "socks", + "settings": { + "udpEnabled": true, + "address": "127.0.0.1" + } + }, + { + "listen": "127.0.0.1", + "port": "10809", + "protocol": "http" + } + ], + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "address": "", + "port": 1234, + "uuid": "your UUID" + }, + "streamSettings": { + "transport": "ws" + }, + "tag": "proxy" + }, + { + "protocol": "freedom", + "tag": "direct" + } + ] +} diff --git a/V5-VMess-Websocket/config_server.json b/V5-VMess-Websocket/config_server.json new file mode 100644 index 0000000..c1ae598 --- /dev/null +++ b/V5-VMess-Websocket/config_server.json @@ -0,0 +1,37 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "listen": "0.0.0.0", + "port": 1234, + "protocol": "vmess", + "settings": { + "users": [ + "UUID1", + "UUID2" + ] + }, + "streamSettings": { + "transport": "ws", + "security": "none" + } + } + ], + "outbounds": [ + { + "protocol": "freedom", + "tag": "direct" + }, + { + "protocol": "blackhole", + "tag": "block" + } + ] +} diff --git a/V5-VMess-mKCPSeed/config_client.json b/V5-VMess-mKCPSeed/config_client.json new file mode 100644 index 0000000..18173e9 --- /dev/null +++ b/V5-VMess-mKCPSeed/config_client.json @@ -0,0 +1,41 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "port": 10808, + "listen": "127.0.0.1", + "protocol": "socks", + "settings": { + "udpEnabled": true + } + }, + { + "port": 10809, + "listen": "127.0.0.1", + "protocol": "http" + } + ], + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "address": "{{ host }}", + "port": "{{ port }}", + "uuid": "your UUID" + }, + "streamSettings": { + "transport": "kcp", + "transportSettings": { + "seed": "{{ seed }}" + } + } + } + ] +} \ No newline at end of file diff --git a/V5-VMess-mKCPSeed/config_server.json b/V5-VMess-mKCPSeed/config_server.json new file mode 100644 index 0000000..ac22346 --- /dev/null +++ b/V5-VMess-mKCPSeed/config_server.json @@ -0,0 +1,32 @@ +{ + "access": { + "type": "Console", + "level": "Warning" + }, + "error": { + "type": "Console", + "level": "Warning" + }, + "inbounds": [ + { + "protocol": "vmess", + "settings": { + "users": [ + "UUID1", + "UUID2" + ] + }, + "streamSettings": { + "transport": "kcp", + "transportSettings": { + "seed": "{{ seed }}" + } + } + } + ], + "outbounds": [ + { + "protocol": "freedom" + } + ] +}