diff --git a/Shadowsocks-Websocket-Web-TLS/config_client.json b/Shadowsocks-Websocket-Web-TLS/config_client.json index d40639c..260a243 100644 --- a/Shadowsocks-Websocket-Web-TLS/config_client.json +++ b/Shadowsocks-Websocket-Web-TLS/config_client.json @@ -33,7 +33,7 @@ ], "outbounds": [ { - "protocol": "vmess", + "protocol": "shadowsocks", "settings": { "servers": [ { diff --git a/Shadowsocks-gRPC-Web-TLS/config_client.json b/Shadowsocks-gRPC-Web-TLS/config_client.json index d047e72..71dfab3 100644 --- a/Shadowsocks-gRPC-Web-TLS/config_client.json +++ b/Shadowsocks-gRPC-Web-TLS/config_client.json @@ -47,7 +47,7 @@ "streamSettings": { "network": "grpc", "security": "tls", - "grcpSettings": { + "grpcSettings": { "serviceName": "michi" } }, diff --git a/Shadowsocks-gRPC-Web-TLS/nginx_proxy.conf b/Shadowsocks-gRPC-Web-TLS/nginx_proxy.conf index 7bf016f..7d20aeb 100644 --- a/Shadowsocks-gRPC-Web-TLS/nginx_proxy.conf +++ b/Shadowsocks-gRPC-Web-TLS/nginx_proxy.conf @@ -13,7 +13,7 @@ server { ssl_prefer_server_ciphers off; server_name mydomain.me; - location /michi { # This michi shall in consistent with the grpc serviceName in v2ray config.json + location /michi/Tun { # This michi shall in consistent with the grpc serviceName in v2ray config.json if ($request_method != "POST") { # if the request method is not POST for this location, return 404 return 404;