Get hands-on experience with 20+ free Google Cloud products and $300 in free credit for new customers.

I am not able to get the secure port https for backend url while using Target Servers, with port 443 configured on Apigee Edge UI.

 
Solved Solved
0 2 470
1 ACCEPTED SOLUTION

Choosing a secure port - 443 does not enable the https to backend APIs.

It should be enabled by posting data with parameter SSLInfo using management APIs.

It can not be updated from Apigee Edge UI portal.

Following are the details for enabling the existing target server with https.


curl -X PUT --header "Content-Type: application/json" --header "Authorization: <Basic Auth Value>" -d "{
  \"name\" : \"<target_server_name>\",
  \"host\" : \"<host_name>\",
  \"isEnabled\" : true,
  \"port\" :<port>,
  \"sSLInfo\": {
      \"enabled\": \"true\"
    }
 }" https://api.enterprise.apigee.com/v1/organizations/<org_name>/environments/<env_name>; /targetservers/<target_server_name>

View solution in original post

2 REPLIES 2