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
1 changed files with 1 additions and 1 deletions

@ -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
{