mirror of
https://github.com/XTLS/Xray-examples.git
synced 2025-09-19 21:54:29 +08:00
Add: gRPC
Co-Authored-By: EIKULG <34759969+EIKULG@users.noreply.github.com>
This commit is contained in:
20
VLESS-GRPC/README.md
Normal file
20
VLESS-GRPC/README.md
Normal file
@@ -0,0 +1,20 @@
|
||||
# VLESS-GRPC
|
||||
|
||||
## 原理图 (Caddy):
|
||||
Xray client <--- gRPC(TLS) ---> Caddy2 <--- gRPC(cleartext) ---> Xray server
|
||||
|
||||
## Nginx:
|
||||
|
||||
同时,您也可以选择使用 Nginx。示例配置片段如下(来自 @xiaoQzhuren):
|
||||
```conf
|
||||
# 填写你的 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;
|
||||
}
|
||||
|
||||
```
|
Reference in New Issue
Block a user