1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2024-09-13 17:06:03 +00:00
buildpack-nginx/bin/compile
2014-02-02 15:55:53 +02:00

20 lines
370 B
Bash
Executable File

#!/usr/bin/env bash
set -e
apt-get update
apt-get -y install nginx
BINDIR=$(dirname "$0")
if [[ ! -f $1/nginx.conf.erb ]]; then
cp $BINDIR/../conf/nginx.conf.erb $1/nginx.conf.erb
fi
if [[ ! -f $1/mime.types ]]; then
cp $BINDIR/../conf/mime.types $1/mime.types
fi
if [[ -e $1/${CUSTOM_BUILD:-custom-build} ]]; then
$1/${CUSTOM_BUILD:-custom-build} "$@"
fi