1
0
Fork 0
forked from DGNum/lab-infra
lab-infra/machines/photo01/immich.nix
Constantin Gierczak--Galle 6d09d3a0b3 feat(voice01): init (#12)
Also update dns01 config.

This PR adds the configuration for a Mumble server @voice.lab.dgnum.eu

Reviewed-on: DGNum/lab-infra#12
Co-authored-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
Co-committed-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
2025-01-13 12:34:03 +01:00

19 lines
413 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/";
proxyWebsockets = true;
};
};
}