Skip to content

Instantly share code, notes, and snippets.

@lricoy
Last active December 26, 2015 04:29
Show Gist options
  • Save lricoy/7093909 to your computer and use it in GitHub Desktop.
Save lricoy/7093909 to your computer and use it in GitHub Desktop.
gunicorn sample config file
#!/bin/bash
NAME="hello_app" # Name of the application
DJANGODIR=/webapps/hello_django/hello # Django project directory
SOCKFILE=/webapps/hello_django/run/gunicorn.sock # we will communicte using this unix socket
USER=webadmin # the user to run as
GROUP=webadmin # the group to run as
NUM_WORKERS=3 # how many worker processes should Gunicorn spawn
DJANGO_SETTINGS_MODULE=hello.settings # which settings file should Django use
DJANGO_WSGI_MODULE=hello.wsgi # WSGI module name
echo "Starting $NAME"
# Activate the virtual environment
cd $DJANGODIR
echo "Entered Django dir"
source ../bin/activate
echo "Activated virtualenv"
export DJANGO_SETTINGS_MODULE=$DJANGO_SETTINGS_MODULE
echo "Exported Django settings"
export PYTHONPATH=$DJANGODIR:$PYTHONPATH
echo "Exported Python path"
# Create the run directory if it doesn't exist
RUNDIR=$(dirname $SOCKFILE)
test -d $RUNDIR || mkdir -p $RUNDIR
# Start your Django Unicorn
# Programs meant to be run under supervisor should not daemonize themselves (do not use --daemon)
exec ../bin/gunicorn ${DJANGO_WSGI_MODULE}:application \
--name $NAME \
--workers $NUM_WORKERS \
--user=$USER --group=$GROUP \
--log-level=debug \
--bind=unix:$SOCKFILE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment