如何在play框架中使用https而不是http

时间:2014-09-11 10:38:10

标签: playframework

我想在我的播放应用程序中只使用https端口。我已经在命令行参数中成功添加了-Dhttps.port = 9043并且使用两个端口默认http = 9000和https = 9043开始播放。如何配置播放以停止使用http端口?

1 个答案:

答案 0 :(得分:0)

在Play 2.x中,将http.port设置为disabled,而不是提供端口号:

./start -Dhttp.port=disabled -Dhttps.port=9043 # (...) 

Configuring HTTPS - Turning HTTP off