From 8fddaa8c1c4ac3f78460db9ecb9a3760a567cdfc Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Sun, 28 Sep 2025 12:41:07 +0200 Subject: [PATCH] feat: only allow oidc login Signed-off-by: Lander Van den Bulcke --- hosts/hosting-01/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/hosting-01/default.nix b/hosts/hosting-01/default.nix index 4bb7d00..e061474 100644 --- a/hosts/hosting-01/default.nix +++ b/hosts/hosting-01/default.nix @@ -113,6 +113,8 @@ in BASE_URL = "https://recipes.escapeangle.com/"; DB_ENGINE = "postgres"; POSTGRES_SERVER = "db-01.tailnet.escapeangle.com"; + ALLOW_SIGNUP = "false"; + ALLOW_PASSWORD_LOGIN = "false"; OIDC_AUTH_ENABLED = "true"; OIDC_SIGNUP_ENABLED = "true"; OIDC_CONFIGURATION_URL = "https://auth.escapeangle.com/.well-known/openid-configuration";