move some services behind authentik

This commit is contained in:
2024-11-25 17:47:44 +01:00
parent e209594229
commit ee6a628e23
11 changed files with 407 additions and 59 deletions

View File

@@ -6,41 +6,6 @@ server {
proxy_pass http://host:80;
include /etc/nginx/conf/proxy.conf;
}
location /transmission {
# transmission
proxy_pass http://host:9091;
include /etc/nginx/conf/proxy.conf;
}
location /jackett {
# jackett
proxy_pass http://host:9117;
include /etc/nginx/conf/proxy.conf;
}
location /radarr {
# radarr
proxy_pass http://host:17878;
include /etc/nginx/conf/proxy.conf;
}
location /sonarr {
# sonarr
proxy_pass http://host:18989;
include /etc/nginx/conf/proxy.conf;
}
location /bazarr {
# bazarr
proxy_pass http://host:16767;
include /etc/nginx/conf/proxy.conf;
}
location /droppy/ {
# droppy
proxy_pass http://host:8989/;
include /etc/nginx/conf/proxy.conf;
}
location /filebrowser/ {
# filebrowser
proxy_pass http://host:8002/;
include /etc/nginx/conf/proxy.conf;
}
}
server {