java – 如何在play框架中禁用http端口?
作者:互联网
当我使用https端口运行Play Framework时,应用程序在两个端口上启动 – 默认(9000)和https(443).
如何禁用默认9000端口并仅在https端口上运行播放应用程序?
我通过以下命令运行应用程序:
play -Dhttps.port=443 -Dhttps.keyStore=/path/to/keystore -Dhttps.keyStorePassword=password start
我得到一些日志:
[info] play – Application started (Prod)
[info] play – Listening for
HTTP on /0:0:0:0:0:0:0:0:9000
[info] play – Listening for HTTPS on
port /0:0:0:0:0:0:0:0:443
解决方法:
尝试使用http.port = disabled标志
play -Dhttp.port=disabled -Dhttps.port=443 -Dhttps.keyStore=/path/to/keystore -Dhttps.keyStorePassword=password start
标签:java,scala,playframework,playframework-2-0 来源: https://codeday.me/bug/20191008/1869756.html