bekkalokk: remove keycloak
Some checks failed
Eval nix flake / evals (pull_request) Failing after 1m39s
Eval nix flake / evals (push) Failing after 1m41s

This commit is contained in:
2024-04-10 23:40:02 +02:00
parent 1e4195ea9d
commit 6851879a03
3 changed files with 2 additions and 30 deletions

View File

@@ -6,8 +6,6 @@
../../base.nix
../../misc/metrics-exporters.nix
#./services/keycloak.nix
./services/website
./services/nginx.nix
./services/gitea/default.nix

View File

@@ -1,24 +0,0 @@
{ pkgs, config, values, ... }:
{
sops.secrets."keys/postgres/keycloak" = {
owner = "keycloak";
group = "keycloak";
restartUnits = [ "keycloak.service" ];
};
services.keycloak = {
enable = true;
settings = {
hostname = "auth.pvv.ntnu.no";
# hostname-strict-backchannel = true;
};
database = {
host = values.hosts.bicep.ipv4;
createLocally = false;
passwordFile = config.sops.secrets."keys/postgres/keycloak".path;
caCert = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt";
};
};
}