6f5fdb0317
This adds Headscale support. It provides also an upgrade to Keycloak 18.0.0 (Quarkus distribution). It upgrades NextCloud from 22 to 23. Reviewed-on: https://git.rz.ens.wtf/Klub-RZ/infrastructure/pulls/9 Co-authored-by: Ryan Lahfa <raito@noreply.git.rz.ens.wtf> Co-committed-by: Ryan Lahfa <raito@noreply.git.rz.ens.wtf>
37 lines
986 B
Nix
37 lines
986 B
Nix
{ config, pkgs, lib, ... }:
|
|
let
|
|
my = config.my;
|
|
port = 8080;
|
|
keycloak-protocol-cas = pkgs.callPackage ./keycloak/keycloak-protocol-cas.nix {};
|
|
domain = "auth.${my.subZone}";
|
|
certs = config.security.acme.certs."${domain}".directory;
|
|
in
|
|
{
|
|
services.keycloak = {
|
|
enable = true;
|
|
initialAdminPassword = "changemeasap";
|
|
plugins = [ pkgs.keycloak.plugins.keycloak-metrics-spi keycloak-protocol-cas ];
|
|
database = {
|
|
type = "postgresql";
|
|
username = "keycloak";
|
|
name = "keycloak";
|
|
createLocally = true;
|
|
passwordFile = "${config.age.secrets.keycloakDatabasePasswordFile.path}";
|
|
};
|
|
settings = {
|
|
hostname-strict-backchannel = true;
|
|
http-port = port;
|
|
proxy = "edge";
|
|
http-relative-path = "/auth";
|
|
hostname = domain;
|
|
};
|
|
};
|
|
|
|
services.nginx.virtualHosts."${domain}" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
locations."/" = {
|
|
proxyPass = "http://127.0.0.1:${toString port}";
|
|
};
|
|
};
|
|
}
|