This commit is contained in:
soraefir
2026-05-08 00:29:12 +02:00
parent 94fdfa2b33
commit 868d2ce116
2 changed files with 2 additions and 3 deletions

View File

@@ -62,7 +62,6 @@ in {
if [ -f "${config.sops.secrets."${lib.toUpper name}".path}" ]; then if [ -f "${config.sops.secrets."${lib.toUpper name}".path}" ]; then
PASS=$(grep "^DB_PASSWORD=" "${config.sops.secrets."${lib.toUpper name}".path}" | cut -d'=' -f2-) PASS=$(grep "^DB_PASSWORD=" "${config.sops.secrets."${lib.toUpper name}".path}" | cut -d'=' -f2-)
echo $PASS
if $PSQL -tAc "ALTER USER ${name}_user WITH PASSWORD '$PASS';" ; then if $PSQL -tAc "ALTER USER ${name}_user WITH PASSWORD '$PASS';" ; then
echo " Successfully set password for ${name}_user" echo " Successfully set password for ${name}_user"
else else

View File

@@ -72,7 +72,7 @@ in {
}; };
}; };
}; };
"sec.localhost" = { "sec.${cfg.hostDomain}" = {
forceSSL = true; forceSSL = true;
# quic = true; # quic = true;
# http3 = true; # http3 = true;
@@ -121,7 +121,7 @@ in {
location @goauthentik_proxy_signin { location @goauthentik_proxy_signin {
internal; internal;
add_header Set-Cookie $auth_cookie; add_header Set-Cookie $auth_cookie;
return 302 https://sso.localhost/outpost.goauthentik.io/start?rd=$scheme://$http_host$request_uri; return 302 https://${cfg.containers.authentik.subdomain}.${cfg.hostDomain}/outpost.goauthentik.io/start?rd=$scheme://$http_host$request_uri;
} }
''; '';
}; };