mirror of
https://github.com/XTLS/Xray-examples.git
synced 2024-11-08 18:13:13 +00:00
.. | ||
Caddyfile | ||
client.json | ||
README.md | ||
server.json |
VLESS-GRPC
原理图 (Caddy):
Xray client <--- gRPC(TLS) ---> Caddy2 <--- gRPC(cleartext) ---> Xray server
Nginx:
同时,您也可以选择使用 Nginx。示例配置片段如下(来自 @xqzr):
# 在 location 后填写 /{你的 ServiceName}
location {
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;
}