add prowlarr

This commit is contained in:
sadan 2025-03-09 23:52:06 -04:00
parent 83305c352e
commit d55c93bfaf
No known key found for this signature in database
3 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{ ... }:
{
home = {
file = {
prowlarr_compose = {
source = ./docker-compose.yml;
target = "./src/prowlarr/docker-compose.yml";
};
};
};
}

View file

@ -0,0 +1,14 @@
services:
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr
environment:
- PUID=106
- PGID=1002
- TS=America/New_York
volumes:
- /storage/prowlarrConf:/config
ports:
- 9696:9696
restart: unless-stopped

View file

@ -0,0 +1,19 @@
{ ... }:
{
services = {
nginx = {
virtualHosts = {
"prowlarr.sadan.zip" = {
forceSSL = true;
useACMEHost = "sadan.zip";
locations = {
"/" = {
proxyPass = "http://localhost:9696";
};
};
};
};
};
};
}