mirror of
https://github.com/XTLS/Xray-examples.git
synced 2024-11-12 20:03:27 +00:00
commit
3ab1a7fa0e
|
@ -16,17 +16,18 @@ 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 1071906480m;
|
client_header_timeout 52w;
|
||||||
keepalive_timeout 1071906480m;
|
keepalive_timeout 52w;
|
||||||
# 在 location 后填写 /你的 ServiceName
|
# 在 location 后填写 /你的 ServiceName
|
||||||
location /你的 ServiceName {
|
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;
|
||||||
grpc_set_header X-Real-IP $proxy_add_x_forwarded_for;
|
client_body_buffer_size 512k;
|
||||||
client_body_timeout 1071906480m;
|
grpc_set_header X-Real-IP $remote_addr;
|
||||||
grpc_read_timeout 1071906480m;
|
client_body_timeout 52w;
|
||||||
|
grpc_read_timeout 52w;
|
||||||
grpc_pass grpc://127.0.0.1:2002;
|
grpc_pass grpc://127.0.0.1:2002;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue