Reputation: 12385
I am interested on how people deploy Play2 apps to production. I am not interested in PaaS solutions like Heroku which are fantastic but I am currently looking at a stand alone solution on linux hosts.
Are there other solutions to package and deploy Play2 projects?
Upvotes: 1
Views: 433
Reputation: 1
I am using Play2.1.2 on our app. Now I'm having the saming question about it. I use Ubuntu, and there is a Tomcat and Nginx on it. Can I use play's netty to run it instead of using Play2War plugin to generate a war.
Upvotes: 0
Reputation: 23841
We're using Play 2.1 on our current project (which consists of 4 applications now) and this is how it looks like:
play dist
, transfers the zip via scp to the ubuntu server, unpacks it there, shutdowns current running apps, replaces them with the new ones and starts again.Upvotes: 1