Adapt frontend rules to new containers
This commit is contained in:
parent
6eae55dde3
commit
e1a47a2540
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue