summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/howto/config.rst33
1 files changed, 33 insertions, 0 deletions
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
^^^^^^^