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

15 lines
318 B
Nix

{
services.immich = {
enable = true;
# default port: 3001
machine-learning.enable = true;
host = "localhost";
};
services.nginx.virtualHosts."immich.cgiga.fr" = {
enableACME = true;
forceSSL = true;
serverAliases = [ ];
locations."/".proxyPass = "http://localhost:2283/";
};
}