[Django]-Django Server Does not affect view changes

3👍

I think you need to restart Gunicorn and Nginx

sudo systemctl restart gunicorn nginx
👤sandes

1👍

By default gunicorn required restart application manually, there is another option which won’t fit for production environment running gunicorn with --reload argument like:

$ gunicorn wsgi:application --reload

https://docs.gunicorn.org/en/19.0/settings.html#reload

👤kuter

Leave a comment