This commit is contained in:
mjallen18
2025-04-24 18:16:39 -05:00
parent 9e502ff0da
commit 1c0928578a
14 changed files with 48 additions and 191 deletions

View File

@@ -16,6 +16,7 @@ let
giteaUrl = "http://10.0.4.18:3000";
actualUrl = "http://10.0.3.18:3333";
lubeloggerUrl = "http://10.0.1.18:6754";
immichUrl = "http://10.0.1.18:2283";
# Plugins
traefikPlugins = {
@@ -275,6 +276,11 @@ in
url = lubeloggerUrl;
}
];
immich.loadBalancer.servers = [
{
url = immichUrl;
}
];
};
routers = {
@@ -358,6 +364,13 @@ in
middlewares = [ "crowdsec" "whitelist-geoblock" ];
tls.certResolver = "letsencrypt";
};
immich = {
entryPoints = [ "websecure" ];
rule = "Host(`immich.${domain}`)";
service = "immich";
middlewares = [ "crowdsec" "whitelist-geoblock" ];
tls.certResolver = "letsencrypt";
};
};
};
};