From aaa22d495d0db4f379a0173ae1b3bb7383172b5b Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 28 Jul 2017 17:56:19 +0300 Subject: Add documentation for preferred_binding configuration option --- doc/howto/config.rst | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/doc/howto/config.rst b/doc/howto/config.rst index c43d65fb..373c0ff6 100644 --- a/doc/howto/config.rst +++ b/doc/howto/config.rst @@ -202,6 +202,39 @@ Where you describe the organization responsible for the service.:: where the second part is the language code. If you don't specify a language the default is "en" (English). +preferred_binding +^^^^^^^^^^^^^^^^^ + +Which binding should be prefered for a service. +Example configuration:: + + "preferred_binding" = { + "single_sign_on_service": [ + 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact', + ], + "single_logout_service": [ + 'urn:oasis:names:tc:SAML:2.0:bindings:SOAP', + 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact', + ], + } + +The available services are: + +* manage_name_id_service +* assertion_consumer_service +* name_id_mapping_service +* authn_query_service +* attribute_service +* authz_service +* assertion_id_request_service +* artifact_resolution_service +* attribute_consuming_service + + service ^^^^^^^ -- cgit v1.2.1