Xray-examples/VLESS-GRPC/README.md
2021-03-28 16:55:46 +08:00

21 lines
458 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# VLESS-GRPC
## 原理图 (Caddy)
Xray client <--- gRPC(TLS) ---> Caddy2 <--- gRPC(cleartext) ---> Xray server
## Nginx:
同时,您也可以选择使用 Nginx。示例配置片段如下来自 @xiaoQzhuren
```conf
# 在 location 后填写 /{你的 ServiceName}
location {
if ($request_method != "POST") {
return 404;
}
client_max_body_size 0;
grpc_read_timeout 1071906480m;
grpc_pass grpc://127.0.0.1:2002;
}
```