wip nixarr
This commit is contained in:
parent
7d0baae2c1
commit
e909b1f5e3
3 changed files with 66 additions and 57 deletions
|
@ -54,6 +54,8 @@ in
|
|||
|
||||
virtualisation.oci-containers.backend = "podman";
|
||||
|
||||
security.acme.acceptTerms = true;
|
||||
security.acme.defaults.email = "admin@joshuabell.xyz";
|
||||
services.nginx = {
|
||||
enable = true;
|
||||
recommendedGzipSettings = true;
|
||||
|
|
|
@ -33,62 +33,70 @@
|
|||
proxyPass = "http://localhost:5055";
|
||||
};
|
||||
};
|
||||
"100.64.0.13" = {
|
||||
locations = {
|
||||
"/jellyfin" = {
|
||||
"jellyfin.h001.local.joshuabell.xyz" = {
|
||||
locations."/" = {
|
||||
proxyWebsockets = true;
|
||||
proxyPass = "http://localhost:8096";
|
||||
extraConfig = ''
|
||||
rewrite ^/jellyfin/(.*) /$1 break;
|
||||
'';
|
||||
};
|
||||
"/jellyseerr" = {
|
||||
};
|
||||
"media.h001.local.joshuabell.xyz" = {
|
||||
locations."/" = {
|
||||
proxyWebsockets = true;
|
||||
proxyPass = "http://localhost:5055";
|
||||
extraConfig = ''
|
||||
rewrite ^/jellyseerr/(.*) /$1 break;
|
||||
'';
|
||||
};
|
||||
"/sabnzbd" = {
|
||||
};
|
||||
"jellyfin.h001.n.joshuabell.xyz" = {
|
||||
locations."/" = {
|
||||
proxyWebsockets = true;
|
||||
proxyPass = "http://localhost:8096";
|
||||
};
|
||||
};
|
||||
"media.h001.n.joshuabell.xyz" = {
|
||||
locations."/" = {
|
||||
proxyWebsockets = true;
|
||||
proxyPass = "http://localhost:5055";
|
||||
};
|
||||
};
|
||||
"sabnzbd.h001.n.joshuabell.xyz" = {
|
||||
locations."/" = {
|
||||
proxyWebsockets = true;
|
||||
proxyPass = "http://localhost:6336";
|
||||
extraConfig = ''
|
||||
rewrite ^/sabnzbd/(.*) /$1 break;
|
||||
'';
|
||||
};
|
||||
"/prowlarr" = {
|
||||
};
|
||||
"prowlarr.h001.n.joshuabell.xyz" = {
|
||||
locations."/" = {
|
||||
proxyWebsockets = true;
|
||||
proxyPass = "http://localhost:9696";
|
||||
extraConfig = ''
|
||||
rewrite ^/prowlarr/(.*) /$1 break;
|
||||
'';
|
||||
};
|
||||
"/radarr" = {
|
||||
};
|
||||
"radarr.h001.n.joshuabell.xyz" = {
|
||||
locations."/" = {
|
||||
proxyWebsockets = true;
|
||||
proxyPass = "http://localhost:7878";
|
||||
extraConfig = ''
|
||||
rewrite ^/radarr/(.*) /$1 break;
|
||||
'';
|
||||
};
|
||||
"/sonarr" = {
|
||||
};
|
||||
"sonarr.h001.n.joshuabell.xyz" = {
|
||||
locations."/" = {
|
||||
proxyWebsockets = true;
|
||||
proxyPass = "http://localhost:8989";
|
||||
extraConfig = ''
|
||||
rewrite ^/sonarr/(.*) /$1 break;
|
||||
'';
|
||||
};
|
||||
"/lidarr" = {
|
||||
};
|
||||
"lidarr.h001.n.joshuabell.xyz" = {
|
||||
locations."/" = {
|
||||
proxyWebsockets = true;
|
||||
proxyPass = "http://localhost:8686";
|
||||
extraConfig = ''
|
||||
rewrite ^/lidarr/(.*) /$1 break;
|
||||
'';
|
||||
};
|
||||
"/readarr" = {
|
||||
};
|
||||
"readarr.h001.n.joshuabell.xyz" = {
|
||||
locations."/" = {
|
||||
proxyWebsockets = true;
|
||||
proxyPass = "http://localhost:8787";
|
||||
extraConfig = ''
|
||||
rewrite ^/readarr/(.*) /$1 break;
|
||||
'';
|
||||
};
|
||||
"/bazarr" = {
|
||||
};
|
||||
"bazarr.h001.n.joshuabell.xyz" = {
|
||||
locations."/" = {
|
||||
proxyWebsockets = true;
|
||||
proxyPass = "http://localhost:6767";
|
||||
extraConfig = ''
|
||||
rewrite ^/bazarr/(.*) /$1 break;
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -45,7 +45,6 @@
|
|||
'';
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
in
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue