35 lines
1.1 KiB
Markdown
Raw Normal View History

# VLESS-GRPC
2021-06-12 23:30:05 +08:00
## 原理图 (Caddy)
Xray client <--- gRPC(TLS) ---> Caddy2 <--- gRPC(cleartext) ---> Xray server
2021-06-12 23:30:05 +08:00
## Nginx
2021-06-05 17:32:30 +08:00
同时,您也可以选择使用 Nginx。示例配置片段如下部分来自 [@xqzr](https://github.com/xqzr)
```conf
2021-05-30 23:07:26 +08:00
server {
2021-09-27 20:38:11 +08:00
listen 443 ssl http2 so_keepalive=on;
2021-06-12 23:30:05 +08:00
server_name example.com;
2021-05-30 23:07:26 +08:00
2021-06-12 23:30:05 +08:00
index index.html;
root /var/www/html;
2021-05-30 23:07:26 +08:00
2021-06-12 23:30:05 +08:00
ssl_certificate /path/to/example.cer;
ssl_certificate_key /path/to/example.key;
ssl_protocols TLSv1.2 TLSv1.3;
2021-06-05 17:32:30 +08:00
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
2021-07-25 20:01:37 +08:00
2021-12-21 15:35:53 +08:00
client_header_timeout 52w;
keepalive_timeout 52w;
2021-07-05 21:50:09 +08:00
# 在 location 后填写 /你的 ServiceName
location /你的 ServiceName {
2021-06-12 23:30:05 +08:00
if ($content_type !~ "application/grpc") {
return 404;
}
client_max_body_size 0;
client_body_buffer_size 512k;
2021-12-27 01:32:54 +08:00
grpc_set_header X-Real-IP $remote_addr;
2021-12-21 15:35:53 +08:00
client_body_timeout 52w;
grpc_read_timeout 52w;
2022-07-16 21:52:40 +08:00
grpc_pass unix:/dev/shm/Xray-VLESS-gRPC.socket;
2021-06-12 23:30:05 +08:00
}
}
2021-03-28 16:55:46 +08:00
```