We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 19f75dc + 5d65166 commit ab0d4adCopy full SHA for ab0d4ad
docker/rootfs/etc/nginx/nginx.conf
@@ -27,9 +27,9 @@ http {
27
tcp_nodelay on;
28
client_body_temp_path /tmp/nginx/body 1 2;
29
keepalive_timeout 90s;
30
- proxy_connect_timeout 90s;
31
- proxy_send_timeout 90s;
32
- proxy_read_timeout 90s;
+ proxy_connect_timeout 90s;
+ proxy_send_timeout 90s;
+ proxy_read_timeout 90s;
33
ssl_prefer_server_ciphers on;
34
gzip on;
35
proxy_ignore_client_abort off;
@@ -60,6 +60,9 @@ http {
60
# Real IP Determination
61
# Docker subnet:
62
set_real_ip_from 172.0.0.0/8;
63
+ # Local subnets:
64
+ set_real_ip_from 10.0.0.0/8;
65
+ set_real_ip_from 192.0.0.0/8;
66
# NPM generated CDN ip ranges:
67
include conf.d/include/ip_ranges.conf;
68
# always put the following 2 lines after ip subnets:
0 commit comments