mirror of
https://github.com/v2fly/v2ray-examples.git
synced 2025-04-03 09:39:29 +08:00
Fix protocol mistakes, typos and change Nginx path
This commit is contained in:
parent
0156d4df2c
commit
c40d9bfe2d
@ -33,7 +33,7 @@
|
|||||||
],
|
],
|
||||||
"outbounds": [
|
"outbounds": [
|
||||||
{
|
{
|
||||||
"protocol": "vmess",
|
"protocol": "shadowsocks",
|
||||||
"settings": {
|
"settings": {
|
||||||
"servers": [
|
"servers": [
|
||||||
{
|
{
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
"streamSettings": {
|
"streamSettings": {
|
||||||
"network": "grpc",
|
"network": "grpc",
|
||||||
"security": "tls",
|
"security": "tls",
|
||||||
"grcpSettings": {
|
"grpcSettings": {
|
||||||
"serviceName": "michi"
|
"serviceName": "michi"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user