7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-07 08:30:48 +00:00

Fix SAML plugin example in docs

See https://discuss.overhang.io/t/saml-authentication-not-working/975
This commit is contained in:
Régis Behmo 2020-10-06 09:56:51 +02:00
parent 0baddb15c2
commit a11f803af5

View File

@ -15,7 +15,7 @@ Skip email validation for new users
patches:
common-env-features: |
"SKIP_EMAIL_VALIDATION": true
Enable bulk enrollment view in the LMS
--------------------------------------
@ -56,7 +56,7 @@ Enable SAML authentication
THIRD_PARTY_AUTH_BACKENDS = "third_party_auth.saml.SAMLAuthBackend"
openedx-auth: |
"SOCIAL_AUTH_SAML_SP_PRIVATE_KEY" : "yoursecretkey"
"SOCIAL_AUTH_SAML_SP_PUBLIC_CERT" : "yourpubliccert"
"SOCIAL_AUTH_SAML_SP_PRIVATE_KEY": "yoursecretkey",
"SOCIAL_AUTH_SAML_SP_PUBLIC_CERT": "yourpubliccert"
Do not forget to replace "yoursecretkey" and "yourpubliccert" with your own values.