1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-02 14:17:19 +02:00

Fix incorrect NGINX variable; $http_host does not exist, it’s $host

Jeff Byrnes 2020-02-08 12:55:47 -05:00
parent d5f6bb102f
commit ff43a22a57

@ -18,7 +18,7 @@ Reverse proxy configuration for Radarr is done like most other applications. Bel
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_redirect off;
proxy_set_header Host $http_host;
proxy_set_header Host $host;
location /YOUR_URL_BASE
{