Xray-examples/VLESS-GRPC/README.md

22 lines
525 B
Markdown
Raw Normal View History

# VLESS-GRPC
## 原理图 (Caddy)
Xray client <--- gRPC(TLS) ---> Caddy2 <--- gRPC(cleartext) ---> Xray server
## Nginx:
2021-05-12 10:44:13 +00:00
同时,您也可以选择使用 Nginx。示例配置片段如下来自 [@xqzr](https://github.com/xqzr)
```conf
2021-03-28 08:55:46 +00:00
# 在 location 后填写 /{你的 ServiceName}
location {
2021-05-12 10:44:13 +00:00
if ($content_type !~ "application/grpc") {
return 404;
}
client_max_body_size 0;
client_body_timeout 1071906480m;
grpc_read_timeout 1071906480m;
grpc_pass grpc://127.0.0.1:2002;
}
2021-03-28 08:55:46 +00:00
```