From 92d7f6b5136725dcae81f9d86c13581fc69a32a0 Mon Sep 17 00:00:00 2001 From: geemili Date: Tue, 9 Jan 2024 18:19:39 -0700 Subject: [PATCH] fix: headscale: remove trailing slash from OIDC issuer url --- configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 6053849..73df7ac 100644 --- a/configuration.nix +++ b/configuration.nix @@ -575,7 +575,7 @@ }; oidc = { - issuer = "https://dex.samsehu.perli.casa/"; + issuer = "https://dex.samsehu.perli.casa"; client_id = "headscale"; client_secret_path = config.age.secrets.OIDC_APP_SECRET_HEADSCALE.path; scope = [ "openid" "profile" "email" ];