diff --git a/machines/photo01/_configuration.nix b/machines/photo01/_configuration.nix index f6c08a7..c9acf28 100644 --- a/machines/photo01/_configuration.nix +++ b/machines/photo01/_configuration.nix @@ -34,7 +34,6 @@ in ]; security.acme.acceptTerms = true; - security.acme.defaults.email = "webmaster@nixos.org"; systemd.network = { config.routeTables = { diff --git a/machines/photo01/immich.nix b/machines/photo01/immich.nix index d19721c..3d1f0c9 100644 --- a/machines/photo01/immich.nix +++ b/machines/photo01/immich.nix @@ -1,7 +1,8 @@ { services.immich = { enable = true; - # default port: 3001 + # NOTE: default port changes in a later version + port = 3001; machine-learning.enable = true; host = "localhost"; }; @@ -10,6 +11,6 @@ enableACME = true; forceSSL = true; serverAliases = [ ]; - locations."/".proxyPass = "http://localhost:2283/"; + locations."/".proxyPass = "http://localhost:3001/"; }; }