Page History
...
Tip |
---|
To use this feature, apply the 38633383 WUM update for WSO2 Identity Server 5.65.0 using the WSO2 Update Manager (WUM). To deploy a WUM update into production, you need to have a paid subscription. If you do not have a paid subscription, you can use this feature with the next version of WSO2 Identity Server when it is released. For more information on updating WSO2 Identity Server using WUM, see Getting Started with WUM. |
...
To configure intermediate certificate validation, configure the following in the identity.xml
file as given below.
Parameter | Description | Sample Value |
---|---|---|
IntermediateCertificateValidation | Defines whether intermediate certificate validation is enabled or not. | true |
IntermediateCerts | Specifies the context paths of the intermediate certificates. Multiple | localhost |
ExemptContext | Specifies the context paths that needs to be excempted from intermediate certificate validation. |
Example:
Code Block |
---|
<IntermediateCertValidation enable="true"> <IntermediateCerts> <CertCN>wso2isintcert</CertCN> <CertCN>localhost</CertCN> </IntermediateCerts> <ExemptContext> <Context>scim2</Context> </ExemptContext> </IntermediateCertValidation> |
...