Replace spaces in private key.
This commit is contained in:
parent
cd467adb06
commit
630a098ba5
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ ACCOUNT_USERNAME_REQUIRED = False
|
|||
# OAuth2 configuration
|
||||
OAUTH2_PROVIDER = {
|
||||
"OIDC_ENABLED": True,
|
||||
"OIDC_RSA_PRIVATE_KEY": env.str("OIDC_RSA_PRIVATE_KEY_1", default=""),
|
||||
"OIDC_RSA_PRIVATE_KEY": env.str("OIDC_RSA_PRIVATE_KEY_1", default="").replace(" ", ""),
|
||||
"SCOPES": {
|
||||
"openid": "OpenID Connect scope",
|
||||
"profile": "Profile Information",
|
||||
|
|
Loading…
Add table
Reference in a new issue