1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2024-11-09 13:10:49 +00:00
buildpack-nginx/conf/nginx.conf.erb
2013-08-16 23:44:22 -07:00

19 lines
235 B
Plaintext

worker_processes 1;
error_log error.log;
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;
}
}