1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2025-09-27 12:34:02 +00:00
Files
buildpack-nginx/conf/nginx.conf.erb
2014-06-25 10:17:46 -07:00

20 lines
285 B
Plaintext

worker_processes 1;
error_log stderr;
pid nginx.pid;
daemon off;
events {
worker_connections 768;
}
http {
types_hash_max_size 2048;
include mime.types;
server {
listen <%= ENV['PORT'] %>;
server_name _;
root <%= ENV.fetch('root', '/app/www') %>;
index index.html;
}
}