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 @itechgrow,
It would be more of a server-side change rather than a DigitalOcean specific change. What you would need to do is the following:
https://www.digitalocean.com/docs/networking/dns/how-to/manage-records/
sudo netstat -plant | grep 80
On an Ubuntu Droplet, if you are using Nginx, you could find your Nginx server block at:
/etc/nginx/sites-enabled/your_domain_com.conf
For Apache this would be:
/etc/apache2/sites-enabled/your_domain_com.conf
Make the change and then restart your web server:
For Nginx:
systemctl restart nginx
For Apache:
systemctl restart apache2
Also if you are using a CMS like Wordpress you would need to update your Site and Home URLs to your new domain name, or if you are using a framework like Laravel, then you need to change your APP_URL in your .env file to the new domain
Finally, you could also rename your Droplet so that when you access your DigitalOcean control panel you could easily figure out what’s hosted on that Droplet. To do that you need to go to your DigitalOcean control panel at: https://cloud.digitalocean.com/ > then click on your Droplet > then click on the name of the Droplet and just edit the name
Hope that this helps!
Let me know if you have any other questions. Regards, Bobby