1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2024-09-19 19:06:04 +00:00
buildpack-nginx/conf/nginx.conf.erb
2013-08-17 19:53:44 -07:00

19 lines
232 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;
}
}