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

Remove start.sh

This commit is contained in:
Florian Heinemann
2014-11-05 09:36:38 -05:00
parent afe205f1cf
commit 36c6e73871
3 changed files with 3 additions and 5 deletions

View File

@ -11,9 +11,9 @@ http {
types_hash_max_size 2048;
include mime.types;
server {
listen <%= ENV['PORT'] %>;
listen <PORT>;
server_name _;
root <%= ENV.fetch('root', '/app/www') %>;
root /app/www;
index index.html;
}
}