Django and Gunicorn: changes not appearing when modifying app files
I’ve recently been working on a nginx/Django/Gunicorn combo app and found out the hard way that gunicorn processes must be restarted for changes to appear if you are modifying app files.
kill -HUP masterpid
This post helped me quite a bit and so did the gunicorn documentation.
