1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2024-12-25 21:45:24 +00:00

Use $app instead of $1, closes #1.

This commit is contained in:
rhy-jot 2013-11-21 12:45:32 -08:00
parent a7bcb52023
commit 8e6678f6f8

View File

@ -4,5 +4,5 @@ set -e
cat << EOF
---
default_process_types:
web: erb $1/nginx.conf.erb > $1/nginx.conf && nginx -c /app/nginx.conf
web: erb /app/nginx.conf.erb > /app/nginx.conf && nginx -c /app/nginx.conf
EOF