mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-05 22:04:58 +01:00
nginx: set the remote ip from X-Real-IP by default (#302)
This commit is contained in:
parent
f3d3f166ac
commit
01ad4658ab
3 changed files with 15 additions and 0 deletions
|
@ -25,6 +25,11 @@ http {
|
|||
|
||||
keepalive_timeout 65;
|
||||
|
||||
set_real_ip_from 10.0.0.0/8;
|
||||
set_real_ip_from 172.16.0.0/12;
|
||||
set_real_ip_from 192.168.0.0/16;
|
||||
real_ip_header X-Real-IP;
|
||||
|
||||
#gzip on;
|
||||
|
||||
upstream php-handler {
|
||||
|
|
|
@ -25,6 +25,11 @@ http {
|
|||
|
||||
keepalive_timeout 65;
|
||||
|
||||
set_real_ip_from 10.0.0.0/8;
|
||||
set_real_ip_from 172.16.0.0/12;
|
||||
set_real_ip_from 192.168.0.0/16;
|
||||
real_ip_header X-Real-IP;
|
||||
|
||||
#gzip on;
|
||||
|
||||
upstream php-handler {
|
||||
|
|
|
@ -25,6 +25,11 @@ http {
|
|||
|
||||
keepalive_timeout 65;
|
||||
|
||||
set_real_ip_from 10.0.0.0/8;
|
||||
set_real_ip_from 172.16.0.0/12;
|
||||
set_real_ip_from 192.168.0.0/16;
|
||||
real_ip_header X-Real-IP;
|
||||
|
||||
#gzip on;
|
||||
|
||||
upstream php-handler {
|
||||
|
|
Loading…
Reference in a new issue