Como desativar a porta http no framework play?

Quando executo o Play Framework usando a porta https, o aplicativo inicia em duas portas - padrão (9000) e https (443). Como desativar a porta 9000 padrão e executar o aplicativo Play SOMENTE na porta https?

Eu executo o aplicativo através do seguinte comando:

play -Dhttps.port=443 -Dhttps.keyStore=/path/to/keystore -Dhttps.keyStorePassword=password start

Eu recebo alguns logs:

[info] play - Aplicativo iniciado (Prod)
[info] play - Escutando HTTP em / 0: 0: 0: 0: 0: 0: 0: 0: 9000
[info] play - Escutando HTTPS na porta / 0: 0: 0: 0: 0: 0: 0: 0: 443

questionAnswers(1)

yourAnswerToTheQuestion