Add nginx vhosts for self-hosted services

This commit is contained in:
Oliver Davies 2024-12-10 00:10:36 +00:00
parent c01820a33b
commit dbd0c993b3
4 changed files with 16 additions and 2 deletions

View file

@ -0,0 +1,12 @@
{
services.nginx = {
enable = true;
virtualHosts = {
"gitea.localhost".locations."/".proxyPass = "http://localhost:2222/";
"immich.localhost".locations."/".proxyPass = "http://localhost:2283/";
"jellyfin.localhost".locations."/".proxyPass = "http://localhost:8096/";
"tubearchivist.localhost".locations."/".proxyPass = "http://localhost:8000/";
};
};
}