By leebr1
I successfully got my Django application my server. However, I realized that I accidentally left DEBUG=True in my settings.py file. I tried setting DEBUG=False in the file, but the website won’t reflect that change. I also tried doing sudo service nginx restart but that didn’t put the change on the website. What do I need to do to get the change in effect?
As an additional note, I followed the tutorial below to get my project into production. https://www.digitalocean.com/community/tutorials/how-to-set-up-django-with-postgres-nginx-and-gunicorn-on-ubuntu-16-04
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
This comment has been deleted
Hi @leebr1
When doing changing to the project, restarting Nginx doesn’t do a lot, since Nginx is just proxying data between the visitor and Gunicorn, so restart Gunicorn instead:
sudo systemctl restart gunicorn
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.
