2024-11-22 14:04:37 +01:00
|
|
|
{
|
|
|
|
services.immich = {
|
|
|
|
enable = true;
|
|
|
|
# NOTE: default port changes in a later version
|
|
|
|
port = 3001;
|
|
|
|
machine-learning.enable = true;
|
|
|
|
host = "localhost";
|
|
|
|
};
|
|
|
|
|
2024-12-07 14:44:37 +01:00
|
|
|
services.nginx.virtualHosts."immich.lab.dgnum.eu" = {
|
2024-11-22 14:04:37 +01:00
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
|
|
|
serverAliases = [ ];
|
|
|
|
locations."/".proxyPass = "http://localhost:3001/";
|
|
|
|
};
|
|
|
|
}
|