Adapt frontend rules to new containers
This commit is contained in:
parent
6eae55dde3
commit
e1a47a2540
|
@ -93,8 +93,18 @@ http {
|
||||||
server_name ~^(couchpotato)(\.\w+)+$;
|
server_name ~^(couchpotato)(\.\w+)+$;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
set $sonarr http://couchpotato:5050;
|
set $couchpotato http://couchpotato:5050;
|
||||||
proxy_pass $sonarr;
|
proxy_pass $couchpotato;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
include common.conf;
|
||||||
|
server_name ~^(radarr)(\.\w+)+$;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
set $radarr http://radarr:7878;
|
||||||
|
proxy_pass $radarr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue