HomarrH
Homarr12mo ago
b_d0n

Reverse proxy issue?

is there a env variable missing for reverse proxy support, on the unraid app x-forwarded-host header with value localip does not match origin header with value homarr.home.com from a forwarded Server Actions request. Aborting the action. does the template support adding a proxy_domain variable? Also to note this is with nginx proxy manager secured with Authentik
Solution
So you added the following fields?:


location / {
  # ...
  proxy_set_header Host $host;
  proxy_set_header Upgrade $http_upgrade;
  proxy_set_header Connection "upgrade";
  # ...
}
Was this page helpful?