lab-infra/machines/photo01/immich.nix
Constantin Gierczak--Galle 8e35fe9b2b
Some checks failed
Check meta / check_meta (push) Failing after 18s
lint / check (push) Successful in 23s
Check meta / check_meta (pull_request) Failing after 19s
lint / check (pull_request) Successful in 24s
build configuration / build_krz01 (pull_request) Failing after 1m35s
feat(dns01): bootstrap DNS
2024-12-07 13:10:13 +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/";
};
}