mirror of
https://github.com/dokku/buildpack-nginx.git
synced 2024-11-05 03:38:43 +00:00
20 lines
245 B
Nginx Configuration File
20 lines
245 B
Nginx Configuration File
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 <PORT>;
|
|
server_name _;
|
|
root /app/www;
|
|
index index.html;
|
|
}
|
|
}
|