forked from DGNum/lab-infra
17 lines
362 B
Nix
17 lines
362 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.cgiga.fr" = {
|
||
|
enableACME = true;
|
||
|
forceSSL = true;
|
||
|
serverAliases = [ ];
|
||
|
locations."/".proxyPass = "http://localhost:3001/";
|
||
|
};
|
||
|
}
|