buildpack-nginx/conf/nginx.conf.erb

19 lines
232 B
Plaintext
Raw Normal View History

2013-08-17 06:41:19 +00:00
worker_processes 1;
2013-08-18 02:53:44 +00:00
error_log stderr;
2013-08-17 06:41:19 +00:00
pid nginx.pid;
daemon off;
events {
worker_connections 768;
}
http {
include mime.types;
server {
listen <%= ENV['PORT'] %>;
server_name _;
root /app/www;
index index.html;
}
}