The authentication endpoint is the authentication URL used in authentication requests. The following sections discuss methods of customizing this endpoint for various scenarios.
...
Edit the
<IS_HOME>/repository/conf/identity/
file, and change the value of the following property parameter depending on the URL that the web application should run.application-authentication.xml
Code Block language xml <AuthenticationEndpointURL>/sso/login</AuthenticationEndpointURL>
For example, If you specify the value as
/sso/login
, the web application runs onhttps://<host_name>:port_number>/sso/login
.Note title Note If you do not change the default value of the
<AuthenticationEndpointURL>
property parameter, accessing the dashboard will redirect redirects you to the WSO2 Identity Server management console.Run the web application on the new authentication endpoint URL.
...
- Shutdown the server if it is already started.
Set the property
tenantListEnabled=false
in theEndpointConfig.properties
file.Info If you are hosting the
authenticationendpoint.war
webapp within WSO2 Identity Server, set this property in the<IS_HOME>/repository/conf/identity/EndpointConfig.properties
file.
- If you are hosting it outside the WSO2 Identity Server (i.e., external Tomcat or WSO2 Application Server), set this property in the
<IS_HOME>/repository/deployment/server/webapps/authenticationendpoint/WEB-INF/classes/EndpointConfig.properties
file.
Set
TenantDomainDropDownEnabled
parameter tofalse
in the<IS_HOME>/repository/conf/identity/application-authentication.xml
file.Code Block language xml <TenantDomainDropDownEnabled>false</TenantDomainDropDownEnabled>
If the
MutualSSLAuthenticator
is only used for the purpose of listing tenant domains in the drop down, disable it in the<IS_HOME>/repository/conf/security/authenticators.xml
file.Code Block language xml <Authenticator name="MutualSSLAuthenticator" disabled="true">
- Restart the server.