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 @hellohello589,
You can whitelist IP addresses on your Droplet using IPTABLES. Good thing is DigitalOcean have a pretty good tutorial on how to work with IPTABLES. Here is the article:
For instance, if you wish to allow an IP address to your firewall you can se use the following commands
iptables -I INPUT -p tcp -s XXX.XXX.XXX.XXX -j ACCEPT
iptables -I OUTPUT -p tcp -d XXX.XXX.XXX.XXX -j ACCEPT`
Please note you need to change XXX.XXX.XXX.XXX with the actual IP addresss. Additionally, the above commands will allow access to every port for the given IP Address.
If you want to give access only to IP only on a specific port, you can use
iptables -I INPUT -p tcp -s XXX.XXX.XXX.XXX tcp --dport 80 -j ACCEPT
Regards, KFSys