Say, I have a Java web app inside a war file that is hosted on cloudfoundry at the url mycoolapp.cfapps.io
, which works perfectly. I now need to host it on a custom domain mycoolapp.com
and I have purchased the domain.
- What is process to host it on my own domain? Can I do it via Cloudfoundry?
- My app needs ssl. Currently
https://mycoolapp.cfapps.io
works. But I need it to work on my custom domain. What will be involved in this? (I think I need to get a certificate for my domain, but what next?) - In the app some confidential information is embedded in urls (this cannot be changed), so I'd also need to ensure that the provider cannot know the urls accessed (apart from the base url). Can this be done? If not, what are the alternatives?