Lion
Lion

Reputation: 271

How to configure playframework server to support ssl

How to configure playframework server to support ssl example https://localhost:9000

Upvotes: 4

Views: 5386

Answers (3)

Javathought
Javathought

Reputation: 37

The secure way is to run your application behind a solution that ends the SSL and a firewall that will drop attacks, if you own your equipments and datacenter.

Otherwise you can't analyse traffic to identify attacks : this is the weakness of SSL if you use it until your application server.

Upvotes: 0

astriffe
astriffe

Reputation: 172

If you prefer to use the integrated way, this is described in the release notes of playframework v1.1. you can then set the port for https in applicaon.conf.

Upvotes: 5

Bernd Elkemann
Bernd Elkemann

Reputation: 23550

The easiest solution is probably to run playframework behind an Apache server with ModSSL.

Upvotes: 0

Related Questions