mirror of
https://github.com/dokku/buildpack-nginx.git
synced 2024-11-05 03:38:43 +00:00
19 lines
235 B
Plaintext
19 lines
235 B
Plaintext
|
worker_processes 1;
|
||
|
error_log error.log;
|
||
|
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;
|
||
|
}
|
||
|
}
|