This commit is contained in:
soraefir
2026-05-11 01:36:08 +02:00
parent 5afaf859b9
commit 4151e50a42
2 changed files with 2 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ let
name = "authentik"; dir = "authentik"; vars = { name = "authentik"; dir = "authentik"; vars = {
NEXTCLOUD_DOMAIN = "${serverCfg.containers.nextcloud.subdomain or "nextcloud"}.${serverCfg.hostDomain}"; NEXTCLOUD_DOMAIN = "${serverCfg.containers.nextcloud.subdomain or "nextcloud"}.${serverCfg.hostDomain}";
AUTHENTIK_DOMAIN = "${containerCfg.subdomain}.${serverCfg.hostDomain}"; AUTHENTIK_DOMAIN = "${containerCfg.subdomain}.${serverCfg.hostDomain}";
COOKIE_DOMAIN = "*.${serverCfg.hostDomain}"; COOKIE_DOMAIN = "${serverCfg.hostDomain}";
}; };
}; };
in { in {

View File

@@ -105,6 +105,7 @@ in {
DB_HOST = builder.host; DB_HOST = builder.host;
DB_NAME = "etherpad_db"; DB_NAME = "etherpad_db";
DB_USER = "etherpad_user"; DB_USER = "etherpad_user";
HOME = "/opt";
TRUST_PROXY = "true"; TRUST_PROXY = "true";
DB_CHARSET = "utf8mb4"; DB_CHARSET = "utf8mb4";
DEFAULT_PAD_TEXT = ""; DEFAULT_PAD_TEXT = "";
@@ -112,9 +113,6 @@ in {
PAD_OPTIONS_USE_MONOSPACE_FONT = "true"; PAD_OPTIONS_USE_MONOSPACE_FONT = "true";
SKIN_VARIANTS = "super-dark-toolbar light-editor dark-background"; SKIN_VARIANTS = "super-dark-toolbar light-editor dark-background";
}; };
extraLabels = {
"traefik.http.routers.${containerCfg.subdomain}.middlewares" = "authentik";
};
overrides = { }; overrides = { };
}; };
}; };