Fix protocol mistakes, typos and change Nginx path

This commit is contained in:
touamano 2021-09-01 19:56:29 +08:00
parent 0156d4df2c
commit c40d9bfe2d
3 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@
], ],
"outbounds": [ "outbounds": [
{ {
"protocol": "vmess", "protocol": "shadowsocks",
"settings": { "settings": {
"servers": [ "servers": [
{ {

View File

@ -47,7 +47,7 @@
"streamSettings": { "streamSettings": {
"network": "grpc", "network": "grpc",
"security": "tls", "security": "tls",
"grcpSettings": { "grpcSettings": {
"serviceName": "michi" "serviceName": "michi"
} }
}, },

View File

@ -13,7 +13,7 @@ server {
ssl_prefer_server_ciphers off; ssl_prefer_server_ciphers off;
server_name mydomain.me; 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 if ($request_method != "POST") { # if the request method is not POST for this location, return 404
return 404; return 404;