lab-infra/machines/photo01/immich.nix
Constantin Gierczak--Galle 1b8dc4d78a
Some checks failed
Check meta / check_meta (push) Failing after 19s
lint / check (push) Successful in 23s
build configuration / build_krz01 (push) Failing after 1m36s
feat(dns01): bootstrap DNS (#10)
Reviewed-on: #10
Co-authored-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
Co-committed-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
2024-12-07 14:44:37 +01:00

16 lines
366 B
Nix

{
services.immich = {
enable = true;
# NOTE: default port changes in a later version
port = 3001;
machine-learning.enable = true;
host = "localhost";
};
services.nginx.virtualHosts."immich.lab.dgnum.eu" = {
enableACME = true;
forceSSL = true;
serverAliases = [ ];
locations."/".proxyPass = "http://localhost:3001/";
};
}