diff options
author | Soispha <soispha@vhack.eu> | 2023-07-04 14:14:59 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-04 14:14:59 +0200 |
commit | 80e57761ab13402cdbc6ffeaa46d55fd241891f6 (patch) | |
tree | d803574aa8a45725adcfdade9a0dbcbf5e889f1a | |
parent | Fix(system/services/nix-sync): Generate user and group if set to default (diff) | |
download | nixos-server-80e57761ab13402cdbc6ffeaa46d55fd241891f6.tar.gz nixos-server-80e57761ab13402cdbc6ffeaa46d55fd241891f6.zip |
Fix(system/services): Inherit acmeRoot manually
Diffstat (limited to '')
-rw-r--r-- | system/services/keycloak/default.nix | 2 | ||||
-rw-r--r-- | system/services/nginx/hosts.nix | bin | 1098 -> 1111 bytes |
2 files changed, 1 insertions, 1 deletions
diff --git a/system/services/keycloak/default.nix b/system/services/keycloak/default.nix index 981833f..e698574 100644 --- a/system/services/keycloak/default.nix +++ b/system/services/keycloak/default.nix @@ -12,7 +12,7 @@ "auth.vhack.eu" = { forceSSL = true; enableACME = true; - acmeRoot = null; # inherit from acme default setting + acmeRoot = "${config.security.acme.defaults.webroot}/acme-challenge"; locations = { "/" = { proxyPass = "http://localhost:${toString config.services.keycloak.settings.http-port}/"; diff --git a/system/services/nginx/hosts.nix b/system/services/nginx/hosts.nix index 7ceb51a..2398413 100644 --- a/system/services/nginx/hosts.nix +++ b/system/services/nginx/hosts.nix Binary files differ |