From e94e0a482edc995dd10351955cbaacd7908ff693 Mon Sep 17 00:00:00 2001 From: Shady Sharaf Date: Tue, 27 Jul 2021 16:01:30 +0000 Subject: [PATCH] [docs] Make saml config example consistent with others --- docs/saml-2-0.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/docs/saml-2-0.md b/docs/saml-2-0.md index 7cb4729..9a11572 100644 --- a/docs/saml-2-0.md +++ b/docs/saml-2-0.md @@ -6,10 +6,18 @@ To enabled SAML 2.0 support, define the following options in the configuration f ```json -"sso": { - "saml": { - "required": true | false, - "metadata_file": ".config/sso/saml-idp-metadata.xml" +{ + "extra": { + "altis": { + "modules": { + "sso": { + "saml": { + "required": true | false, + "metadata_file": ".config/sso/saml-idp-metadata.xml" + } + } + } + } } } ```