mirror of
https://github.com/v2fly/v2ray-examples.git
synced 2025-04-04 01:59:27 +08:00
VLESS-gRPC-TLS
VLESS-gRPC-TLS-web
Nginx
-
In config_server.json: Remove
tlsSettings
, Changesecurity
tonone
or simply remove it. Change Inbound listen to 127.0.0.1 or Unix Domain Socket. -
In nginx config: Listen http2, add location
GunService
(should same as grpcserviceName
).
Config clip example:
v2ray
/etc/v2ray/config.json
(server side)
{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": 9000,
"protocol": "vless",
"settings": {
"clients": [
{
"id": "",
"email": "love@v2fly.org"
}
],
"decryption": "none"
},
"streamSettings": {
"network": "gun",
"grpcSettings": {
"serviceName": "GunService"
}
}
}
],
"outbounds": [
{
"protocol": "freedom",
"tag": "direct"
}
]
}
nginx
/etc/nginx/conf.d/yourdomain.conf
server {
# ......
listen 443 ssl http2;
listen [::]:443 ssl http2;
# ......
location /GunService/Tun {
if ($request_method != "POST" ) {
return 404;
}
client_max_body_size 0;
client_body_timeout 1h;
grpc_read_timeout 1h;
grpc_pass grpc://127.0.0.1:9000;
grpc_set_header X-Real-IP $http_x_forwarded_for;
grpc_set_header X-Forwarded-For $proxy_protocol_addr;
}
# ......
}