feat(photo01): init #4

Merged
cst1 merged 19 commits from cst1/lab-infra:init_photo01 into main 2024-11-22 14:04:37 +01:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit b391255aa9 - Show all commits

View file

@ -34,7 +34,6 @@ in
];
security.acme.acceptTerms = true;
security.acme.defaults.email = "webmaster@nixos.org";
systemd.network = {
config.routeTables = {

View file

@ -1,7 +1,8 @@
{
services.immich = {
enable = true;
# default port: 3001
# NOTE: default port changes in a later version
port = 3001;
machine-learning.enable = true;
host = "localhost";
};
@ -10,6 +11,6 @@
enableACME = true;
forceSSL = true;
serverAliases = [ ];
locations."/".proxyPass = "http://localhost:2283/";
locations."/".proxyPass = "http://localhost:3001/";
};
}