Add Proxy headers for bouncer.

This commit is contained in:
Greyscale 2021-06-07 18:21:49 +02:00
parent e87b00353f
commit 72b8276b47

View file

@ -20,6 +20,10 @@ server {
# ssl_ciphers HIGH:!aNULL:!MD5;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header Host $host;
proxy_pass {{ targetPath }};
}
}