Publish Rest Service with Domain on IIS
I have written, published and tested a web service in ColdFusion. I have a test server running on port 8500. I have a production server running on port 8028. I have the IIS connector installed as well.
My question is in regard to making my REST service available on the Internet. My ColdFusion Server is on AWS, everything works fine on localhost/127.0.0.1 with on port:8028
So, as an example, my Rest service is running happily on: mymachine:8028/myrestservice/{argument_variable1}-{argument_variable2}
Now, I want to expose it (I have the domain) on subdomain.mydomain.com.au/somepath_or_paths/{argument_variable1}-{argument_variable2}
Can someone help me out by pointing me to a resource to do this? Do I need to set up something in AWS to reverse proxy requests to my server? Thank you.
