I have installed WSO2 API Manager on an EC2 server. It is working just fine but I would like to make is available through nice url (using port 443 and not 9443).
So, instead of:
https://example.com:9443/store (API Manager)
https://example.com:8243 (API Gateway)
It would look like:
https://developer.example.com/store (API Manager)
https://api.example.com (API Gateway)
How do you achieve this on AWS?
My plan was to place two load balancers in front of the ec2 server. The first load balancer would port forward from incoming port 443 to outgoing port 9443 on the wso2 ec2 server (API Manager). The second load balancer would port forward incoming port 443 to outgoing port 8243 on the wso2 ec2 server (API Gateway).
When I try this I get no response within the browser, it just times out. I have also tried this on the non-ssl ports and it still doesn't work.
Any ideas? What am I missing? How can you port forward in AWS? What is the best approach?