#!/bin/bash

if [ -z "$GUNICORN_PARAMS" ]
then
    GUNICORN_PARAMS="-b :80 --threads 10 --workers 5"
fi
gunicorn $GUNICORN_PARAMS c2cwsgiutils.wsgi_app:application
