1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/fider_ynh.git synced 2024-09-03 18:36:11 +02:00

Fix nginx configuration: Missing X-Forwarded headers...

This commit is contained in:
Salamandar 2023-01-19 22:32:51 +01:00
parent ed31f2039c
commit 0e165bd664

View file

@ -2,6 +2,10 @@
location __PATH__/ {
proxy_pass http://localhost:__PORT__;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $host:$server_port;
proxy_set_header X-Forwarded-Port $server_port;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;