46👍
Try running with --preload
as an argument to gunicorn_django
– it should show you the error the workers are having when starting. See this bug
- [Django]-How do you skip a unit test in Django?
- [Django]-Identify the changed fields in django post_save signal
- [Django]-'WSGIRequest' object has no attribute 'user' Django admin
7👍
In my case I had to run gunicorn_django --bind example.com:8001
from the same folder as my manage.py file.
- [Django]-Django – after login, redirect user to his custom page –> mysite.com/username
- [Django]-How to add clickable links to a field in Django admin?
- [Django]-Cannot install psycopg2 Ubuntu
Source:stackexchange.com