I am trying to set up https for play 2.2.1. It successfully works by running:
# play -Dhttps.port=9443
# run
But then when I do it with
# play -Dhttps.port=9443
# dist
and unzip the folder and try to run it with the .bat file. However,play does not listen to HTTPS as it did when I used 'play run' ( it only listens to HTTP).
I've tried both
# <name>.bat
and
# <name>.bat -Dhttps.port=9443
Am I missing something? I've looked at http://www.playframework.com/documentation/2.2.x/ConfiguringHttps from my understanding 'start' is the name.bat since I am running it in Windows. Are there any additional configurations/steps I need to take?
Many thanks in advance!