Skip to content
This repository has been archived by the owner. It is now read-only.

miolini/playhub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

== Description ==

PlayHub - application server for PlayFramework based projects
with initialization on demand.

== Configure ==

You need configure reverse proxy service like Nginx with next headers:

- "X-PlayHub-AppPath" - path to war directory or archive
- "X-PlayHub-WaitStart" - block request while application is starting

== Example Nginx Config VirtualHost ==

server {
	listen 80;
	server_name yourapp.com;

	location / {
		proxy_pass http://localhost:8080;
		proxy_set_header Host $host;
		proxy_set_header X-PlayHub-WaitStart false;
		proxy_set_header X-PlayHub-AppPath /var/www/yourapp.war;
		break;
	}
}



About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages