How to config PlayFramework2 to support SSL?

前端 未结 6 1595
灰色年华
灰色年华 2020-12-24 14:31

I\'ve read How to configure playframework server to support ssl and I also tried to follow http://www.playframework.org/documentation/1.1.1/releasenotes-1.1#https but it doe

6条回答
  •  隐瞒了意图╮
    2020-12-24 15:04

    One thing we did was to use AWS ELB to handle our SSL, then setup the SSL forwarding (HTTP -> HTTPS) using a plays filters. The main benefit, takes the SSL load off your server and you don't have to run Apache or Nginx in front of play (as some solution point out).

    You can see my answer here: https://stackoverflow.com/a/23646948/690164

    I also write a bit more about it in my blog: http://www.mentful.com/2014/05/25/play-framework-filter-for-aws-elastic-load-balancer-forward-http-to-https/

提交回复
热议问题