I come from a play 1.2.7 application and currently getting started with play framework 2.4.1 and scala. For a start I use the activator web ui to manage applications and there I cannot get the application to use a different http port.
I changed the http.port setting in conf/application.conf, but still play 2.4.1 tries to bind to port 9000, which is already in use. The setting I tried is:
http.port=7000
Any suggestion on how to change the port for a play framework 2.4.1 application that is run via the activator web ui?
Note that as suggested in the linked question I can use
./activator "run 7000"
in the application itself to have it bind to port 7000. Still my question is how can I get the same behaviour via the activator web ui?