evewspace / eve-wspace

Wormhole mapping and corporation management for Eve Online.
Apache License 2.0
86 stars 51 forks source link

django_gunicorn deprecated #224

Open acdervis opened 8 years ago

acdervis commented 8 years ago

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.

Zumochi commented 8 years ago

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

iAddz commented 8 years ago

Great fix, this helped us a lot thanks.