Setup wizarr
This commit is contained in:
parent
831ff28792
commit
b0c75e8032
|
@ -105,13 +105,24 @@
|
||||||
[ "/var/lib/jellyfin:/config" "/mnt/plex:/media" "/mnt/music:/music" ];
|
[ "/var/lib/jellyfin:/config" "/mnt/plex:/media" "/mnt/music:/music" ];
|
||||||
extraOptions = [ "--device=/dev/dri:/dev/dri" ];
|
extraOptions = [ "--device=/dev/dri:/dev/dri" ];
|
||||||
};
|
};
|
||||||
# Configure jellyseerr
|
# Configure jellyseerr - Requests for jellyfin
|
||||||
"jellyseerr" = {
|
"jellyseerr" = {
|
||||||
image = "fallenbagel/jellyseerr:latest";
|
image = "fallenbagel/jellyseerr:latest";
|
||||||
environment = { "TZ" = "America/New_York"; };
|
environment = { "TZ" = "America/New_York"; };
|
||||||
ports = [ "5055:5055" ];
|
ports = [ "5055:5055" ];
|
||||||
volumes = [ "/var/lib/jellyseerr:/app/config" ];
|
volumes = [ "/var/lib/jellyseerr:/app/config" ];
|
||||||
};
|
};
|
||||||
|
# Configure wizarr - Account management for jellyfin
|
||||||
|
"wizarr" = {
|
||||||
|
image = "ghcr.io/wizarrrr/wizarr";
|
||||||
|
environment = {
|
||||||
|
"TZ" = "America/New_York";
|
||||||
|
"APP_URL" = "https://wizarr.mccarty.io";
|
||||||
|
"DISABLE_BUILTIN_AUTH" = "false";
|
||||||
|
};
|
||||||
|
ports = [ "5690:5690" ];
|
||||||
|
volumes = [ "/var/lib/wizarr:/data/database" ];
|
||||||
|
};
|
||||||
# Configure kavita
|
# Configure kavita
|
||||||
"kavita" = {
|
"kavita" = {
|
||||||
image = "kizaing/kavita:latest";
|
image = "kizaing/kavita:latest";
|
||||||
|
|
|
@ -219,6 +219,16 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"wizarr.mccarty.io" = {
|
||||||
|
forceSSL = true;
|
||||||
|
useACMEHost = "mccarty.io";
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://100.121.150.78:5690";
|
||||||
|
extraConfig = ''
|
||||||
|
allow all;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
"tdarr.mccarty.io" = {
|
"tdarr.mccarty.io" = {
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
useACMEHost = "mccarty.io";
|
useACMEHost = "mccarty.io";
|
||||||
|
|
Loading…
Reference in New Issue