Skip to content

Instantly share code, notes, and snippets.

@mtkp
mtkp / gunicorn-proj
Created September 3, 2014 21:22
Simple configuration: Django + Nginx + Gunicorn
# /etc/gunicorn.d/gunicorn-proj
CONFIG = {
'mode': 'django',
'user': 'myuser',
'group': 'myuser',
'working_dir': '/path/to/django/proj',
'environment': {
'PYTHONPATH': '/path/to/django/proj'