From 88097dcd191c4a7db57ac899303452be0605d3a9 Mon Sep 17 00:00:00 2001 From: Sven Schneider Date: Sun, 9 Nov 2025 16:38:40 +0100 Subject: [PATCH] fix(jotty): Comments removed from variables, as they are interpreted. (#9002) The following comments have been removed because they cause the comments to become part of the variable's value and therefore cannot be interpreted by the application. SSO_FALLBACK_LOCAL=yes # Allow both SSO and normal login OIDC_CLIENT_SECRET=your_client_secret # Enable confidential client mode with client authentication OIDC_ADMIN_GROUPS=admins # Map provider groups to admin role https://github.com/fccview/jotty/issues/200#issuecomment-3508394682 --- install/jotty-install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/jotty-install.sh b/install/jotty-install.sh index 81be5f29c2..d20896c362 100644 --- a/install/jotty-install.sh +++ b/install/jotty-install.sh @@ -40,9 +40,9 @@ NODE_ENV=production # OIDC_ISSUER= # OIDC_CLIENT_ID= # APP_URL= -# SSO_FALLBACK_LOCAL=yes # Allow both SSO and normal login -# OIDC_CLIENT_SECRET=your_client_secret # Enable confidential client mode with client authentication -# OIDC_ADMIN_GROUPS=admins # Map provider groups to admin role +# SSO_FALLBACK_LOCAL=yes +# OIDC_CLIENT_SECRET=your_client_secret +# OIDC_ADMIN_GROUPS=admins EOF msg_ok "Installed ${APPLICATION}"