mirror of
https://github.com/dokku/buildpack-nginx.git
synced 2024-11-05 19:48:43 +00:00
9 lines
144 B
Plaintext
9 lines
144 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
|
||
|
cat << EOF
|
||
|
---
|
||
|
default_process_types:
|
||
|
web: erb $1/nginx.conf.erb > $1/nginx.conf && nginx -c /app/nginx.conf
|
||
|
EOF
|