Created
August 20, 2020 14:26
-
-
Save gayashanbc/33e9c8ed244a4a360eb53bd1def5f97e to your computer and use it in GitHub Desktop.
Property Configs for SampleApp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EnableSAML2SSOLogin=true | |
#Url to do send SAML2 SSO AuthnRequest | |
SAML2SSOURL=samlsso | |
#URIs to skip SSOAgentFilter; comma separated values | |
SkipURIs= | |
IndexPage=/SampleApp/index.html | |
#A unique identifier for this SAML 2.0 Service Provider application | |
SAML2.SPEntityId=SampleApp | |
#The URL of the SAML 2.0 Assertion Consumer | |
SAML2.AssertionConsumerURL=http://localhost:8080/SampleApp/home.jsp | |
#A unique identifier for this SAML 2.0 Service Provider application | |
SAML2.IdPEntityId=localhost | |
#The URL of the SAML 2.0 Identity Provider | |
SAML2.IdPURL=https://localhost:9443/samlsso | |
#Specify if SingleLogout is enabled/disabled | |
SAML2.EnableSLO=true | |
#This is the URL that is used for SLO | |
SAML2.SLOURL=logout | |
#Specify if SAMLResponse element is signed | |
SAML2.EnableResponseSigning=true | |
#Specify if SAMLAssertion element is signed | |
SAML2.EnableAssertionSigning=true | |
#Specify if SAMLAssertion element is encrypted | |
SAML2.EnableAssertionEncryption=false | |
#Specify if AuthnRequests and LogoutRequests should be signed | |
SAML2.EnableRequestSigning=true | |
#Specify if SAML request is a passive | |
SAML2.IsPassiveAuthn=false | |
#Password of the KeyStore | |
KeyStorePassword=wso2carbon | |
#Alias of the IdP's public certificate | |
IdPPublicCertAlias=wso2carbon | |
#Alias of the SP's private key | |
PrivateKeyAlias=wso2carbon | |
#Private key password to retrieve the private key used to sign | |
#AuthnRequest and LogoutRequest messages | |
PrivateKeyPassword=wso2carbon |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment