mirror of
https://github.com/dokku/buildpack-nginx.git
synced 2024-11-05 11:48:42 +00:00
9 lines
155 B
Bash
Executable File
9 lines
155 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
cat << EOF
|
|
---
|
|
default_process_types:
|
|
web: erb /app/nginx.conf.erb > /app/nginx.conf && /nginx/nginx -c /app/nginx.conf
|
|
EOF
|