Enable 2 way SSL on cloud

Not applicable

How to enable 2 way SSL on northbound. i.e. between Client and Apigee ?

0 3 201
3 REPLIES 3

Not applicable

To enable 2 way ssl we need the client cert to be installed in the truststore, which can be installed with the help of below smart doc link.

http://docs.apigee.com/management/apis/post/organizations/%7Borg_name%7D/environments/%7Benv_name%7D....

After which we can enabled the client Auth field in the virtual host configuration for which we must provide the trustStore name like below else it would throw an error.

{

"hostAliases": [

“xyz.apigee.net"

],

"interfaces": [],

"name": "secure",

"port": “443",

"sSLInfo": {

"ciphers": [],

"clientAuthEnabled": "true",

"enabled": "true",

"ignoreValidationErrors": false,

"keyAlias": "xyz",

"keyStore": "xyz",

"protocols": [],

"trustStore": “Truststore-name"

}

}

Remember - in the cloud you will need to contact Apigee Support to make the required Virtual Host changes.

Hi ,

we setup the SSL in virtual host level and Do we need to add anything in proxy configuration other then virtual host name ?

Tahnks,