Xray-examples/VLESS-GRPC/README.md

31 lines
995 B
Markdown
Raw Normal View History

# VLESS-GRPC
2021-06-12 15:30:05 +00:00
## 原理图 (Caddy)
Xray client <--- gRPC(TLS) ---> Caddy2 <--- gRPC(cleartext) ---> Xray server
2021-06-12 15:30:05 +00:00
## Nginx
2021-06-05 09:32:30 +00:00
同时,您也可以选择使用 Nginx。示例配置片段如下部分来自 [@xqzr](https://github.com/xqzr)
```conf
2021-05-30 15:07:26 +00:00
server {
2021-06-12 15:30:05 +00:00
listen 443 ssl http2;
server_name example.com;
2021-05-30 15:07:26 +00:00
2021-06-12 15:30:05 +00:00
index index.html;
root /var/www/html;
2021-05-30 15:07:26 +00:00
2021-06-12 15:30:05 +00:00
ssl_certificate /path/to/example.cer;
ssl_certificate_key /path/to/example.key;
ssl_protocols TLSv1.2 TLSv1.3;
2021-06-05 09:32:30 +00: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-05-30 15:07:26 +00:00
2021-06-12 15:30:05 +00:00
# 在 location 后填写 /{你的 ServiceName}
location /{你的 ServiceName} {
if ($content_type !~ "application/grpc") {
return 404;
}
client_max_body_size 0;
client_body_timeout 1071906480m;
grpc_read_timeout 1071906480m;
2021-06-12 15:30:05 +00:00
grpc_pass grpc://127.0.0.1:2002;
}
}
2021-03-28 08:55:46 +00:00
```