feat: run immich

This commit is contained in:
Anish Lakhwara
2025-05-03 22:44:48 -07:00
parent cfa7dfacd6
commit f4e53de4c4
4 changed files with 28 additions and 18 deletions
+11 -4
View File
@@ -1,4 +1,4 @@
{ ... }:
{ pkgs, config, ... }:
{
services.immich = {
enable = true;
@@ -7,16 +7,23 @@
};
host = "0.0.0.0";
port = 8567;
mediaLocation = "/data/photos";
externalDomain = "https://photos.sealight.xyz";
mediaLocation = "/mnt/two/photos";
openFirewall = true;
settings.server.externalDomain = "https://photos.sealight.xyz";
};
services.nginx.virtualHosts."photos.mossnet.lan" = {
enableACME = false;
forceSSL = false;
locations."/" = {
proxyPass = "http://127.0.0.1:${toString config.services.immich.port}";
proxyWebsockets = true;
recommendedProxySettings = true;
extraConfig = ''
proxy_pass http://127.0.0.1:8567/;
client_max_body_size 50000M;
proxy_read_timeout 600s;
proxy_send_timeout 600s;
send_timeout 600s;
'';
};
};