当我使用https端口运行Play Framework时,应用程序在两个端口上启动-默认(9000)和https(443)。
如何禁用默认的9000端口并仅在https端口上运行Play应用程序?
我通过以下命令运行应用程序:
play -Dhttps.port=443 -Dhttps.keyStore=/path/to/keystore -Dhttps.keyStorePassword=password start
我得到一些日志:
最佳答案
尝试使用 http.port = disabled 标志
play -Dhttp.port=disabled -Dhttps.port=443 -Dhttps.keyStore=/path/to/keystore -Dhttps.keyStorePassword=password start
关于java - 如何在Play框架中禁用HTTP端口?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24864163/