1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2024-11-05 11:48:42 +00:00
buildpack-nginx/conf/nginx.conf.erb
2014-06-20 10:37:51 -07:00

19 lines
230 B
Plaintext

worker_processes 1;
error_log stderr;
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;
}
}