10 lines
359 B
PHP
10 lines
359 B
PHP
|
|
proxy_http_version 1.1;
|
||
|
|
proxy_set_header Host $host;
|
||
|
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
|
|
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
|
||
|
|
proxy_set_header X-Forwarded-Host $host;
|
||
|
|
proxy_set_header Connection "";
|
||
|
|
proxy_redirect off;
|
||
|
|
proxy_buffering on;
|