1234567891011121314151617181920212223242526272829303132 |
- #!/bin/bash
- NAME="website" # Name of the application
- DJANGODIR=//var/www/Website # Django project directory
- SOCKFILE=/var/www/Website/run/gunicorn.sock # we will communicte using this unix socket
- USER=root # the user to run as
- GROUP=root # the group to run as
- NUM_WORKERS=3 # how many worker processes should Gunicorn spawn
- DJANGO_SETTINGS_MODULE=Website.settings # which settings file should Django use
- DJANGO_WSGI_MODULE=Website.wsgi # WSGI module name
- echo "Starting $NAME as `whoami`"
- # Activate the virtual environment
- cd $DJANGODIR
- source /var/www/dev/python3/bin/activate
- export DJANGO_SETTINGS_MODULE=$DJANGO_SETTINGS_MODULE
- export PYTHONPATH=$DJANGODIR:$PYTHONPATH
- # 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 /var/www/dev/python3/bin/gunicorn ${DJANGO_WSGI_MODULE}:application \
- --name $NAME \
- --workers $NUM_WORKERS \
- --user=$USER --group=$GROUP \
- --bind=unix:$SOCKFILE \
- --log-level=debug \
- --log-file=-
|