...
Code Block |
---|
<Authenticator name="SAML2SSOAuthenticator" disabled="true"> <Priority>10</Priority> <Config> <Parameter name="LoginPage">/carbon/admin/login.jsp</Parameter> <Parameter name="ServiceProviderID">carbonServer</Parameter> <Parameter name="IdentityProviderSSOServiceURL">https://localhost:9443/samlsso</Parameter> </Config> <Parameter name="NameIDPolicyFormat">urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified</Parameter> </Config> </Authenticator> |
Priority
- This is the priority level of the authenticator. In the Carbon Runtime, the authenticator with the highest priority will be picked up. This value should be greater than 5 in order to supersede the default username/password-based authenticator.Parameter LoginPage
- This is the default login page URL of Carbon. All requests coming to this page will be intercepted for authentication. It is not necessary to change this value from the value given in the sample configuration.Parameter ServiceProviderID
- This is the unique identifier for the Carbon Server in an SSO setup. This value should be used as the value of the issuer in the Identity Server configuration.Parameter IdentityProviderSSOServiceURL
- This is the Identity Server URL to which the users will be redirected for authentication. It should have this format:https://(host-name):(port)/samlsso
.- Parameter NameIDPolicyFormat - This is the format that the name ID policy uses.
Step 3
Configuring the Identity Server as the Single Sign-On provider
...