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 there,
This is quite unlikely to be coming from DigitalOcean.
Can you confirm the following:
Let me know how it goes!
Best,
Bobby
Hello there,
As mentioned it’s unlikely to be coming from DigitalOcean.
You can examine the server access logs and check for malicious requests and general spikes in the load on the server in order to determine whether there was an issue related to a vast amount of traffic or not.
Regards
Heya,
Below are several steps and considerations to troubleshoot and potentially resolve the issue. Please be aware that some steps might require technical proficiency with server administration and network security.
Check the server logs to see if there are any indications of unauthorized access attempts or other suspicious activity.
sudo cat /var/log/nginx/error.log
sudo cat /var/log/nginx/access.log
sudo cat /var/log/auth.log
Investigate any suspicious IP addresses, URLs, or user agents that you find in the logs.
Check the configuration files for any abnormalities, misconfigurations, or unauthorized modifications.
Review the firewall settings on your server to ensure that there are no unnecessary ports open and that the firewall is configured correctly.
sudo ufw status
Run a malware scan on your server to ensure that it hasn’t been compromised.
You can use ClamAV, a well-known antivirus software for Unix systems, to perform the scan.
sudo apt-get install clamav clamav-daemon
sudo freshclam
sudo clamscan -r --bell -i /
If you are developing your own application, inspect your application code to ensure there are no vulnerabilities or security misconfigurations that might be causing this problem.
The error message you provided typically appears when access is blocked by some firewall or security software. This could be at your ISP, on your local machine, or some security software running on your server. If the blocking is occurring at your local network or machine, try accessing your site from a different network or device to see if the problem persists.
Ensure your system and all packages are updated and upgraded to the latest versions, as the issue might be related to software vulnerabilities.
sudo apt update && sudo apt upgrade