chore: maintain

This commit is contained in:
danny 2026-01-20 13:41:53 +08:00
parent 2378a66114
commit 25482857d4
58 changed files with 1095 additions and 747 deletions

View file

@ -2,7 +2,7 @@
{ lib, config, ... }:
let
inherit (lib) mkForce;
domain = "dnywe.com";
inherit (config.networking) domain;
cfg = config.services.keycloak;
in
{
@ -12,6 +12,9 @@ in
};
};
# Disable nginx reverse proxy
services.nginx.virtualHosts."${cfg.settings.hostname}" = mkForce { };
services.nginx.virtualHosts."${cfg.settings.hostname}" = {
useACMEHost = domain;
forceSSL = true;
enableACME = mkForce false;
};
}