mirror of
https://github.com/XTLS/Xray-examples.git
synced 2024-11-22 08:31:29 +00:00
[gRPC/nginx] Update Nginx config (#34)
This commit is contained in:
parent
7cfa58563a
commit
ca4da00d57
|
@ -7,15 +7,26 @@ Xray client <--- gRPC(TLS) ---> Caddy2 <--- gRPC(cleartext) ---> Xray server
|
||||||
|
|
||||||
同时,您也可以选择使用 Nginx。示例配置片段如下(来自 [@xqzr](https://github.com/xqzr)):
|
同时,您也可以选择使用 Nginx。示例配置片段如下(来自 [@xqzr](https://github.com/xqzr)):
|
||||||
```conf
|
```conf
|
||||||
# 在 location 后填写 /{你的 ServiceName}
|
server {
|
||||||
location {
|
listen 443 ssl http2;
|
||||||
if ($content_type !~ "application/grpc") {
|
server_name example.com
|
||||||
return 404;
|
|
||||||
|
index index.html;
|
||||||
|
root /var/www/html;
|
||||||
|
|
||||||
|
ssl_certificate /path/to/example.cer ;
|
||||||
|
ssl_certificate_key /path/to/example.key ;
|
||||||
|
|
||||||
|
# 在 location 后填写 /{你的 ServiceName}
|
||||||
|
location /x {
|
||||||
|
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;
|
||||||
}
|
}
|
||||||
client_max_body_size 0;
|
|
||||||
client_body_timeout 1071906480m;
|
|
||||||
grpc_read_timeout 1071906480m;
|
|
||||||
grpc_pass grpc://127.0.0.1:2002;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue