1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2025-06-26 02:20:47 +00:00

CHANGE to static compile

This commit is contained in:
Florian Heinemann
2014-11-06 17:29:41 -05:00
parent 51b16c2175
commit 5c959aaad6
5 changed files with 122 additions and 87 deletions

View File

@ -4,16 +4,16 @@ pid nginx.pid;
daemon off;
events {
worker_connections 768;
worker_connections 768;
}
http {
types_hash_max_size 2048;
include mime.types;
server {
listen <PORT>;
server_name _;
root /app/www;
index index.html;
}
types_hash_max_size 2048;
include mime.types;
server {
listen <%= ENV["PORT"] %>;
server_name _;
root /app/www;
index index.html;
}
}