-
Notifications
You must be signed in to change notification settings - Fork 605
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
74 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
release: python manage.py migrate --noinput | ||
web: gunicorn -c gunicorn.conf pydotorg.wsgi | ||
web: bin/start-nginx gunicorn -c gunicorn.conf pydotorg.wsgi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
#!/usr/bin/env bash | ||
|
||
psmgr=/tmp/nginx-buildpack-wait | ||
rm -f $psmgr | ||
mkfifo $psmgr | ||
|
||
n=1 | ||
while getopts :f option ${@:1:2} | ||
do | ||
case "${option}" | ||
in | ||
f) FORCE=$OPTIND; n=$((n+1));; | ||
esac | ||
done | ||
|
||
# Initialize log directory. | ||
mkdir -p logs/nginx | ||
touch logs/nginx/access.log logs/nginx/error.log | ||
echo 'buildpack=nginx at=logs-initialized' | ||
|
||
# Start log redirection. | ||
( | ||
# Redirect nginx logs to stdout. | ||
tail -qF -n 0 logs/nginx/*.log | ||
echo 'logs' >$psmgr | ||
) & | ||
|
||
# Start App Server | ||
( | ||
# Take the command passed to this bin and start it. | ||
# E.g. bin/start-nginx bundle exec unicorn -c config/unicorn.rb | ||
COMMAND=${@:$n} | ||
echo "buildpack=nginx at=start-app cmd=$COMMAND" | ||
$COMMAND | ||
echo 'app' >$psmgr | ||
) & | ||
|
||
if [[ -z "$FORCE" ]] | ||
then | ||
FILE="/tmp/app-initialized" | ||
|
||
# We block on app-initialized so that when nginx binds to $PORT | ||
# are app is ready for traffic. | ||
while [[ ! -f "$FILE" ]] | ||
do | ||
echo 'buildpack=nginx at=app-initialization' | ||
sleep 1 | ||
done | ||
echo 'buildpack=nginx at=app-initialized' | ||
fi | ||
|
||
# Start nginx | ||
( | ||
# We expect nginx to run in foreground. | ||
# We also expect a socket to be at /tmp/nginx.socket. | ||
echo 'buildpack=nginx at=nginx-start' | ||
/usr/bin/nginx -p . -c config/nginx.conf | ||
echo 'nginx' >$psmgr | ||
) & | ||
|
||
# This read will block the process waiting on a msg to be put into the fifo. | ||
# If any of the processes defined above should exit, | ||
# a msg will be put into the fifo causing the read operation | ||
# to un-block. The process putting the msg into the fifo | ||
# will use it's process name as a msg so that we can print the offending | ||
# process to stdout. | ||
read exit_process <$psmgr | ||
echo "buildpack=nginx at=exit process=$exit_process" | ||
exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters