mirror of
https://github.com/XTLS/Xray-examples.git
synced 2024-11-08 18:13:13 +00:00
Change all timeout
This commit is contained in:
commit
4ea3d4e023
|
@ -5,8 +5,8 @@ Xray client <--- gRPC(TLS) ---> Caddy2 <--- gRPC(cleartext) ---> Xray server
|
||||||
At the same time, you can also choose to use Nginx. A sample configuration snippet is as follows (partially from [@xqzr](https://github.com/xqzr)):
|
At the same time, you can also choose to use Nginx. A sample configuration snippet is as follows (partially from [@xqzr](https://github.com/xqzr)):
|
||||||
```conf
|
```conf
|
||||||
server {
|
server {
|
||||||
listen 443 ssl http2 so_keepalive=on;
|
listen 443 ssl http2;
|
||||||
listen [::]:443 ssl http2 so_keepalive=on;
|
listen [::]:443 ssl http2;
|
||||||
server_name example.com;
|
server_name example.com;
|
||||||
|
|
||||||
index index.html;
|
index index.html;
|
||||||
|
@ -17,8 +17,8 @@ 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;
|
||||||
|
|
||||||
client_header_timeout 52w;
|
client_header_timeout 1w;
|
||||||
keepalive_timeout 52w;
|
keepalive_timeout 5d;
|
||||||
# Fill in /your ServiceName after location
|
# Fill in /your ServiceName after location
|
||||||
location /your ServiceName {
|
location /your ServiceName {
|
||||||
if ($content_type !~ "application/grpc") {
|
if ($content_type !~ "application/grpc") {
|
||||||
|
@ -27,8 +27,9 @@ return 404;
|
||||||
client_max_body_size 0;
|
client_max_body_size 0;
|
||||||
client_body_buffer_size 512k;
|
client_body_buffer_size 512k;
|
||||||
grpc_set_header X-Real-IP $remote_addr;
|
grpc_set_header X-Real-IP $remote_addr;
|
||||||
client_body_timeout 52w;
|
client_body_timeout 1w;
|
||||||
grpc_read_timeout 52w;
|
grpc_read_timeout 1w;
|
||||||
|
grpc_send_timeout 1w;
|
||||||
grpc_pass unix:/dev/shm/Xray-Trojan-gRPC.socket;
|
grpc_pass unix:/dev/shm/Xray-Trojan-gRPC.socket;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,8 +7,8 @@ Xray client <--- gRPC(TLS) ---> Caddy2 <--- gRPC(cleartext) ---> Xray server
|
||||||
同时,您也可以选择使用 Nginx。示例配置片段如下(部分来自 [@xqzr](https://github.com/xqzr)):
|
同时,您也可以选择使用 Nginx。示例配置片段如下(部分来自 [@xqzr](https://github.com/xqzr)):
|
||||||
```conf
|
```conf
|
||||||
server {
|
server {
|
||||||
listen 443 ssl http2 so_keepalive=on;
|
listen 443 ssl http2;
|
||||||
listen [::]:443 ssl http2 so_keepalive=on;
|
listen [::]:443 ssl http2;
|
||||||
server_name example.com;
|
server_name example.com;
|
||||||
|
|
||||||
index index.html;
|
index index.html;
|
||||||
|
@ -19,8 +19,8 @@ server {
|
||||||
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;
|
||||||
|
|
||||||
client_header_timeout 52w;
|
client_header_timeout 1w;
|
||||||
keepalive_timeout 52w;
|
keepalive_timeout 5d;
|
||||||
# 在 location 后填写 /你的 ServiceName
|
# 在 location 后填写 /你的 ServiceName
|
||||||
location /你的 ServiceName {
|
location /你的 ServiceName {
|
||||||
if ($content_type !~ "application/grpc") {
|
if ($content_type !~ "application/grpc") {
|
||||||
|
@ -29,8 +29,9 @@ server {
|
||||||
client_max_body_size 0;
|
client_max_body_size 0;
|
||||||
client_body_buffer_size 512k;
|
client_body_buffer_size 512k;
|
||||||
grpc_set_header X-Real-IP $remote_addr;
|
grpc_set_header X-Real-IP $remote_addr;
|
||||||
client_body_timeout 52w;
|
client_body_timeout 1w;
|
||||||
grpc_read_timeout 52w;
|
grpc_read_timeout 1w;
|
||||||
|
grpc_send_timeout 1w;
|
||||||
grpc_pass unix:/dev/shm/Xray-Trojan-gRPC.socket;
|
grpc_pass unix:/dev/shm/Xray-Trojan-gRPC.socket;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,8 +7,8 @@ Xray client <--- gRPC(TLS) ---> Caddy2 <--- gRPC(cleartext) ---> Xray server
|
||||||
同时,您也可以选择使用 Nginx。示例配置片段如下(部分来自 [@xqzr](https://github.com/xqzr)):
|
同时,您也可以选择使用 Nginx。示例配置片段如下(部分来自 [@xqzr](https://github.com/xqzr)):
|
||||||
```conf
|
```conf
|
||||||
server {
|
server {
|
||||||
listen 443 ssl http2 so_keepalive=on;
|
listen 443 ssl http2;
|
||||||
listen [::]:443 ssl http2 so_keepalive=on;
|
listen [::]:443 ssl http2;
|
||||||
server_name example.com;
|
server_name example.com;
|
||||||
|
|
||||||
index index.html;
|
index index.html;
|
||||||
|
@ -19,8 +19,8 @@ server {
|
||||||
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;
|
||||||
|
|
||||||
client_header_timeout 52w;
|
client_header_timeout 1w;
|
||||||
keepalive_timeout 52w;
|
keepalive_timeout 5d;
|
||||||
# 在 location 后填写 /你的 ServiceName
|
# 在 location 后填写 /你的 ServiceName
|
||||||
location /你的 ServiceName {
|
location /你的 ServiceName {
|
||||||
if ($content_type !~ "application/grpc") {
|
if ($content_type !~ "application/grpc") {
|
||||||
|
@ -29,8 +29,9 @@ server {
|
||||||
client_max_body_size 0;
|
client_max_body_size 0;
|
||||||
client_body_buffer_size 512k;
|
client_body_buffer_size 512k;
|
||||||
grpc_set_header X-Real-IP $remote_addr;
|
grpc_set_header X-Real-IP $remote_addr;
|
||||||
client_body_timeout 52w;
|
client_body_timeout 1w;
|
||||||
grpc_read_timeout 52w;
|
grpc_read_timeout 1w;
|
||||||
|
grpc_send_timeout 1w;
|
||||||
grpc_pass unix:/dev/shm/Xray-VLESS-gRPC.socket;
|
grpc_pass unix:/dev/shm/Xray-VLESS-gRPC.socket;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,6 +23,6 @@ server {
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
proxy_read_timeout 52w;
|
proxy_read_timeout 5d;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue