Skip to content

Instantly share code, notes, and snippets.

@allanlei
Created February 9, 2012 02:06
Show Gist options
  • Save allanlei/1776494 to your computer and use it in GitHub Desktop.
Save allanlei/1776494 to your computer and use it in GitHub Desktop.
Gunicorn config for Django application on Heroku with SSL
import multiprocessing
workers = multiprocessing.cpu_count() * 2 + 1
worker_class = 'gevent'
loglevel = 'error'
secure_scheme_headers = {
'X-FORWARDED-PROTO': 'https',
}
web: python manage.py run_gunicorn -b 0.0.0.0:$PORT -c config/gunicorn.conf --settings $DJANGO_SETTINGS_MODULE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment