diff --git a/bin/release b/bin/release index 34c2c65..a603236 100755 --- a/bin/release +++ b/bin/release @@ -4,5 +4,5 @@ set -e cat << EOF --- default_process_types: - web: erb /app/nginx.conf.erb > /app/nginx.conf && /app/nginx/nginx -c /app/nginx.conf + web: sh start.sh EOF diff --git a/bin/start.sh b/bin/start.sh new file mode 100644 index 0000000..7846bf4 --- /dev/null +++ b/bin/start.sh @@ -0,0 +1,2 @@ +erb /app/nginx.conf.erb > /app/nginx.conf +/app/nginx/nginx -c /app/nginx.conf \ No newline at end of file