17 lines
356 B
Nix
17 lines
356 B
Nix
{ lib, modulesPath, ... }:
|
|
|
|
{
|
|
services.immich = {
|
|
enable = true;
|
|
# default port: 3001
|
|
machine-learning.enable = true;
|
|
host = "localhost";
|
|
};
|
|
|
|
services.nginx.virtualHosts."immich.rz01.infra.dgnum.eu" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
serverAliases = [];
|
|
locations."/".proxyPass = "http://localhost:3001/";
|
|
};
|
|
}
|