I would like to use only https port in my play application. I've successfully added -Dhttps.port=9043 in command line parameters and play started using two ports default http=9000 and https=9043. How to configure play to stop using http port?
标签:
playframework
相关问题
- PlayFramework: how to transform each element of a
- Could not import the newly generated play framewor
- Play Framework Unicode symbols in HTTP Header
- Putting output of 'git describe' in templa
- org.scala-sbt#sbt;${{sbt.version}}: not found on e
相关文章
- Testing request with CSRF Token in Play framework
- How to map an abstract collection with jpa?
- play2 framework my template is not seen. : package
- How does @Inject in Scala work
- play framework 2.0 - unexpected exception - Key No
- Error integration fingerprint U.are.U SDK with jav
- Custom bridge table in playframework ebean
- how to handle fileupload into a table in play fram
In Play 2.x, set
http.port
todisabled
instead of providing a port number:Configuring HTTPS - Turning HTTP off