defiant/keycloak: fix hostname settings after 24.11 upgrade

This commit is contained in:
Felix Albrigtsen 2024-12-31 16:05:56 +01:00
parent 512c0595cb
commit 98d66602b3

View File

@ -1,6 +1,7 @@
{ config, pkgs, lib, ... }:
let
cfg = config.services.keycloak.settings;
hostname = "iam.feal.no";
in {
sops.secrets."keycloak/postgres" = { };
@ -16,7 +17,7 @@ in {
settings = {
cache = "local";
hostname = "https://iam.feal.no";
hostname = "https://${hostname}";
hostname-backchannel-dynamic = false;
http-enabled = true;
http-host = "127.0.1.2";
@ -26,7 +27,7 @@ in {
};
# The main reverse proxy is defined in ./nginx.nix
services.nginx.virtualHosts.${cfg.hostname} = {
services.nginx.virtualHosts.${hostname} = {
locations."= /".return = "302 ${cfg.hostname}/realms/feal.no/account";
};
}