mirror of
https://github.com/XTLS/Xray-examples.git
synced 2024-11-10 02:53:11 +00:00
[gRPC] Fix code style (#36)
This commit is contained in:
parent
4211410fde
commit
e6a084fa60
|
@ -1,34 +1,30 @@
|
||||||
# VLESS-GRPC
|
# VLESS-GRPC
|
||||||
|
## 原理图 (Caddy) :
|
||||||
## 原理图 (Caddy):
|
|
||||||
Xray client <--- gRPC(TLS) ---> Caddy2 <--- gRPC(cleartext) ---> Xray server
|
Xray client <--- gRPC(TLS) ---> Caddy2 <--- gRPC(cleartext) ---> Xray server
|
||||||
|
## Nginx:
|
||||||
## Nginx:
|
|
||||||
|
|
||||||
同时,您也可以选择使用 Nginx。示例配置片段如下(部分来自 [@xqzr](https://github.com/xqzr)):
|
同时,您也可以选择使用 Nginx。示例配置片段如下(部分来自 [@xqzr](https://github.com/xqzr)):
|
||||||
```conf
|
```conf
|
||||||
server {
|
server {
|
||||||
listen 443 ssl http2;
|
listen 443 ssl http2;
|
||||||
server_name example.com;
|
server_name example.com;
|
||||||
|
|
||||||
index index.html;
|
index index.html;
|
||||||
root /var/www/html;
|
root /var/www/html;
|
||||||
|
|
||||||
ssl_certificate /path/to/example.cer;
|
ssl_certificate /path/to/example.cer;
|
||||||
ssl_certificate_key /path/to/example.key;
|
ssl_certificate_key /path/to/example.key;
|
||||||
ssl_protocols TLSv1.2 TLSv1.3;
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||||||
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
|
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
|
||||||
|
|
||||||
# 在 location 后填写 /{你的 ServiceName}
|
# 在 location 后填写 /{你的 ServiceName}
|
||||||
location /x {
|
location /{你的 ServiceName} {
|
||||||
if ($content_type !~ "application/grpc") {
|
if ($content_type !~ "application/grpc") {
|
||||||
return 404;
|
return 404;
|
||||||
}
|
}
|
||||||
client_max_body_size 0;
|
client_max_body_size 0;
|
||||||
client_body_timeout 1071906480m;
|
client_body_timeout 1071906480m;
|
||||||
grpc_read_timeout 1071906480m;
|
grpc_read_timeout 1071906480m;
|
||||||
grpc_pass grpc://127.0.0.1:2002;
|
grpc_pass grpc://127.0.0.1:2002;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue