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.
Hello, @brancojunio
The first step will be to make sure that both abc.com and www.adc.dom DNS is pointed to your droplet/server. If that is already configured your can simply redirect www to non-www or vice versa.
Let me know if you have any questions.
Regards, Alex
Hi thank you for your reply!
I believe the domain is already set up to my droplet/server as I can access it via www.abc.com already. How would I go about redirecting any requests to “abc.com” to -> “www.abc.com” ?
Kind Regards Junio
If you’re using Nginx, you could do something like the following within your Nginx config:
server {
....
server_name example.com www.example.com;
rewrite ^ https://www.example.com$request_uri? permanent;
....
}
–
Think different and code well,
-Conrad