mirror of
https://github.com/dokku/buildpack-nginx.git
synced 2024-11-05 11:48:42 +00:00
20 lines
258 B
Plaintext
20 lines
258 B
Plaintext
worker_processes 1;
|
|
error_log stderr;
|
|
pid nginx.pid;
|
|
daemon off;
|
|
types_hash_max_size 2048;
|
|
|
|
events {
|
|
worker_connections 768;
|
|
}
|
|
|
|
http {
|
|
include mime.types;
|
|
server {
|
|
listen <%= ENV['PORT'] %>;
|
|
server_name _;
|
|
root /app/www;
|
|
index index.html;
|
|
}
|
|
}
|