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";
|
virtualisation.oci-containers.backend = "podman";
|
||||||
|
|
||||||
|
security.acme.acceptTerms = true;
|
||||||
|
security.acme.defaults.email = "admin@joshuabell.xyz";
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
recommendedGzipSettings = true;
|
recommendedGzipSettings = true;
|
||||||
|
|
|
@ -33,62 +33,70 @@
|
||||||
proxyPass = "http://localhost:5055";
|
proxyPass = "http://localhost:5055";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"100.64.0.13" = {
|
"jellyfin.h001.local.joshuabell.xyz" = {
|
||||||
locations = {
|
locations."/" = {
|
||||||
"/jellyfin" = {
|
proxyWebsockets = true;
|
||||||
proxyPass = "http://localhost:8096";
|
proxyPass = "http://localhost:8096";
|
||||||
extraConfig = ''
|
};
|
||||||
rewrite ^/jellyfin/(.*) /$1 break;
|
};
|
||||||
'';
|
"media.h001.local.joshuabell.xyz" = {
|
||||||
};
|
locations."/" = {
|
||||||
"/jellyseerr" = {
|
proxyWebsockets = true;
|
||||||
proxyPass = "http://localhost:5055";
|
proxyPass = "http://localhost:5055";
|
||||||
extraConfig = ''
|
};
|
||||||
rewrite ^/jellyseerr/(.*) /$1 break;
|
};
|
||||||
'';
|
"jellyfin.h001.n.joshuabell.xyz" = {
|
||||||
};
|
locations."/" = {
|
||||||
"/sabnzbd" = {
|
proxyWebsockets = true;
|
||||||
proxyPass = "http://localhost:6336";
|
proxyPass = "http://localhost:8096";
|
||||||
extraConfig = ''
|
};
|
||||||
rewrite ^/sabnzbd/(.*) /$1 break;
|
};
|
||||||
'';
|
"media.h001.n.joshuabell.xyz" = {
|
||||||
};
|
locations."/" = {
|
||||||
"/prowlarr" = {
|
proxyWebsockets = true;
|
||||||
proxyPass = "http://localhost:9696";
|
proxyPass = "http://localhost:5055";
|
||||||
extraConfig = ''
|
};
|
||||||
rewrite ^/prowlarr/(.*) /$1 break;
|
};
|
||||||
'';
|
"sabnzbd.h001.n.joshuabell.xyz" = {
|
||||||
};
|
locations."/" = {
|
||||||
"/radarr" = {
|
proxyWebsockets = true;
|
||||||
proxyPass = "http://localhost:7878";
|
proxyPass = "http://localhost:6336";
|
||||||
extraConfig = ''
|
};
|
||||||
rewrite ^/radarr/(.*) /$1 break;
|
};
|
||||||
'';
|
"prowlarr.h001.n.joshuabell.xyz" = {
|
||||||
};
|
locations."/" = {
|
||||||
"/sonarr" = {
|
proxyWebsockets = true;
|
||||||
proxyPass = "http://localhost:8989";
|
proxyPass = "http://localhost:9696";
|
||||||
extraConfig = ''
|
};
|
||||||
rewrite ^/sonarr/(.*) /$1 break;
|
};
|
||||||
'';
|
"radarr.h001.n.joshuabell.xyz" = {
|
||||||
};
|
locations."/" = {
|
||||||
"/lidarr" = {
|
proxyWebsockets = true;
|
||||||
proxyPass = "http://localhost:8686";
|
proxyPass = "http://localhost:7878";
|
||||||
extraConfig = ''
|
};
|
||||||
rewrite ^/lidarr/(.*) /$1 break;
|
};
|
||||||
'';
|
"sonarr.h001.n.joshuabell.xyz" = {
|
||||||
};
|
locations."/" = {
|
||||||
"/readarr" = {
|
proxyWebsockets = true;
|
||||||
proxyPass = "http://localhost:8787";
|
proxyPass = "http://localhost:8989";
|
||||||
extraConfig = ''
|
};
|
||||||
rewrite ^/readarr/(.*) /$1 break;
|
};
|
||||||
'';
|
"lidarr.h001.n.joshuabell.xyz" = {
|
||||||
};
|
locations."/" = {
|
||||||
"/bazarr" = {
|
proxyWebsockets = true;
|
||||||
proxyPass = "http://localhost:6767";
|
proxyPass = "http://localhost:8686";
|
||||||
extraConfig = ''
|
};
|
||||||
rewrite ^/bazarr/(.*) /$1 break;
|
};
|
||||||
'';
|
"readarr.h001.n.joshuabell.xyz" = {
|
||||||
};
|
locations."/" = {
|
||||||
|
proxyWebsockets = true;
|
||||||
|
proxyPass = "http://localhost:8787";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
"bazarr.h001.n.joshuabell.xyz" = {
|
||||||
|
locations."/" = {
|
||||||
|
proxyWebsockets = true;
|
||||||
|
proxyPass = "http://localhost:6767";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -45,7 +45,6 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue