15 lines
474 B
Text
15 lines
474 B
Text
|
# Verwaltet durch Ansible
|
||
|
|
||
|
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;
|
||
|
|
||
|
# If you want to log the remote port of the file senders, you'll need that
|
||
|
proxy_set_header X-Remote-Port $remote_port;
|
||
|
|
||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||
|
|
||
|
# We expect the downstream servers to redirect to the right hostname, so don't do any rewrites here.
|
||
|
proxy_redirect off;
|