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.
Hi @gloveworld49,
So, there could be a lot of reasons as to why this is happening. It can be due to memory shortage, some error in your website’s code, high load on your Droplet and so on.
Let’s try to troubleshoot this, first when you notice the issue of your website is down, check your Error Logs, SSH to your droplet and see what does the log says. You should be able to find it at /var/log/nginx/error.log or /var/log/nginx/error_log. In there you can see the exact error as to why your website is down.
It’s possible as said that you have high load and there is not enough memory on the droplet. You can also see if Nginx and MySQL are actually running:
systemctl status nginx
systemctl status mysql
If they are down, it’s most possibly due to memory shortage or high load. In that case, you can try adding SWAP to your machine or just upgrading.
If your error log suggests otherwise, it would be wise to try and search for that error in either some search engines or post it here and we’ll try to assist.
Lastly, it’s possible there is some bug with the Application. It’s good practice to check the developer of the platform you are using, in your case Invision Power Suite and see if any other users report the same behavior.
Hope this helps!