I'm trying to get the Play! server listen to a single domain name instead of all domain names that are configured for this server.
I.E. I have two web-services running on two different domain names: example1.com example2.com
Example 1 is running on port 9000, Example 2 is running on port 9001. Port 80 of the respective domains is forwarded to the port in question.
But example 2 is still accessible by example1.com:9001 and I'd like to know how to configure the Play! server in such a way that it will only listen to a specified domain name.
I could fix it in-application by checking the request.host variable but Play! is meant to be easy so I'm looking for the easy solution!
Kind regards, Jan
PS I tried using the http.address configuration parameter but the application still listens to both domain names.