evewspace / eve-wspace

Wormhole mapping and corporation management for Eve Online.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

django_gunicorn deprecated

acdervis opened this issue · comments

Gunicorn no longer works with the django_gunicorn script.

I have solved the issue by moving /evewspace/evewspace/apache/wsgi.py to /evewspace/ and using this config for supervisor:

command=/home/mapper/eve-wspace/bin/gunicorn wsgi --workers=4 -b 0.0.0.0:8000
directory=/home/mapper/eve-wspace/evewspace

Don't forget to reload your configs.

Another alternative is using uwsgi, which is supposed to be slightly faster. See #194.

commented

Great fix, this helped us a lot thanks.