1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2024-09-18 02:36:02 +00:00
buildpack-nginx/conf/nginx.conf.erb
Florian Heinemann 9dbc484b6c UPDATE Readme
2014-11-06 17:32:49 -05:00

20 lines
270 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 /app/www;
index index.html;
}
}