[gRPC/nginx] Update Nginx config (#34)

This commit is contained in:
Soff 2021-05-30 23:07:26 +08:00 committed by GitHub
parent 7cfa58563a
commit ca4da00d57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,8 +7,18 @@ Xray client <--- gRPC(TLS) ---> Caddy2 <--- gRPC(cleartext) ---> Xray server
同时,您也可以选择使用 Nginx。示例配置片段如下来自 [@xqzr](https://github.com/xqzr)
```conf
server {
listen 443 ssl http2;
server_name example.com
index index.html;
root /var/www/html;
ssl_certificate /path/to/example.cer ;
ssl_certificate_key /path/to/example.key ;
# 在 location 后填写 /{你的 ServiceName}
location {
location /x {
if ($content_type !~ "application/grpc") {
return 404;
}
@ -17,5 +27,6 @@ location {
grpc_read_timeout 1071906480m;
grpc_pass grpc://127.0.0.1:2002;
}
}
```