Skip to content
Snippets Groups Projects
Commit 62ea8805 authored by Stefano Alberto Russo's avatar Stefano Alberto Russo
Browse files

Fixed default setting for OIDC_TOKEN_USE_BASIC_AUTH from True to False.

parent 928d26ca
No related branches found
No related tags found
No related merge requests found
......@@ -263,7 +263,7 @@ if OIDC_RP_CLIENT_ID:
# Optional
OIDC_USE_NONCE = booleanize(os.environ.get('OIDC_USE_NONCE', False))
OIDC_TOKEN_USE_BASIC_AUTH = booleanize(os.environ.get('OIDC_TOKEN_USE_BASIC_AUTH', True))
OIDC_TOKEN_USE_BASIC_AUTH = booleanize(os.environ.get('OIDC_TOKEN_USE_BASIC_AUTH', False))
# Non-customizable stuff
LOGIN_REDIRECT_URL = '/'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment