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.

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.
On the Django one-click install image, the gunicorn process is being run via Upstart which will restart it if it’s killed. So you need to run: <pre> service gunicorn stop </pre> in order to stop it completely.
To serve your own Django project, there are two key files that you need to change to remove references to <code>django_project</code>. In <code>/etc/init/gunicorn.conf</code> you need to change the name and the pythonpath to match your new project. In <code>/etc/nginx/sites-enabled/django</code>, you need to change the paths to both your media and static files to match your new location.
See this article for more details on the configuration files: https://www.digitalocean.com/community/tutorials/how-to-use-the-django-one-click-install-image