diff --git a/Dockerfiles/frontend/nginx.conf b/Dockerfiles/frontend/nginx.conf index 5eef30c..35a31f6 100644 --- a/Dockerfiles/frontend/nginx.conf +++ b/Dockerfiles/frontend/nginx.conf @@ -93,8 +93,18 @@ http { server_name ~^(couchpotato)(\.\w+)+$; location / { - set $sonarr http://couchpotato:5050; - proxy_pass $sonarr; + set $couchpotato http://couchpotato:5050; + proxy_pass $couchpotato; + } + } + + server { + include common.conf; + server_name ~^(radarr)(\.\w+)+$; + + location / { + set $radarr http://radarr:7878; + proxy_pass $radarr; } }