Use full path of nginx executable

This commit is contained in:
Charles Pritchard 2015-03-27 16:34:46 -07:00
parent 56250a7453
commit 969446ca04
1 changed files with 1 additions and 1 deletions

View File

@ -125,6 +125,6 @@ cat <<EOF >"$BUILD_DIR/start_nginx"
#!/usr/bin/env bash
rm -f /app/nginx/nginx.conf
erb /app/nginx/nginx.conf.erb > /app/nginx/nginx.conf
exec nginx -p /app/nginx -c /app/nginx/nginx.conf
exec /app/nginx/nginx -p /app/nginx -c /app/nginx/nginx.conf
EOF
chmod +x "$BUILD_DIR/start_nginx"