1
0
Fork 0
forked from DGNum/lab-infra
lab-infra/machines/photo01/immich.nix

17 lines
362 B
Nix
Raw Permalink Normal View History

2024-11-21 18:39:34 +01:00
{
services.immich = {
enable = true;
2024-11-21 19:43:51 +01:00
# NOTE: default port changes in a later version
port = 3001;
2024-11-21 18:39:34 +01:00
machine-learning.enable = true;
host = "localhost";
};
services.nginx.virtualHosts."immich.cgiga.fr" = {
enableACME = true;
forceSSL = true;
2024-11-21 18:40:50 +01:00
serverAliases = [ ];
2024-11-21 19:43:51 +01:00
locations."/".proxyPass = "http://localhost:3001/";
2024-11-21 18:39:34 +01:00
};
}