0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-03-14 02:25:08 +01:00

nginx: set the remote ip from X-Real-IP by default

This commit is contained in:
Tilo Spannagel 2018-04-02 11:40:07 +02:00
parent e01caa961f
commit fdf9c48186
No known key found for this signature in database
GPG key ID: B89F1626A58E1429
3 changed files with 15 additions and 0 deletions

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {