Skip to content

Commit ab0d4ad

Browse files
committed
Merge branch 'develop' of https://github.com/lopugit/nginx-proxy-manager into develop
2 parents 19f75dc + 5d65166 commit ab0d4ad

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

docker/rootfs/etc/nginx/nginx.conf

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ http {
2727
tcp_nodelay on;
2828
client_body_temp_path /tmp/nginx/body 1 2;
2929
keepalive_timeout 90s;
30-
proxy_connect_timeout 90s;
31-
proxy_send_timeout 90s;
32-
proxy_read_timeout 90s;
30+
proxy_connect_timeout 90s;
31+
proxy_send_timeout 90s;
32+
proxy_read_timeout 90s;
3333
ssl_prefer_server_ciphers on;
3434
gzip on;
3535
proxy_ignore_client_abort off;
@@ -60,6 +60,9 @@ http {
6060
# Real IP Determination
6161
# Docker subnet:
6262
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;
6366
# NPM generated CDN ip ranges:
6467
include conf.d/include/ip_ranges.conf;
6568
# always put the following 2 lines after ip subnets:

0 commit comments

Comments
 (0)