Hi, I currently have my domain from GoDaddy pointed to digitalocean without the www before it. Do I just delete the domain without the www and add it again with the www? Is that all or should I change the url settings in wordpress first? I’m afraid I won’t be able to access the website if I change the domain on digitalocean before changing the url settings in wordpress. I should still be able to access the wp-admin by using the ipaddress/wp-admin correct?
Thanks for your help!
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.
Click below to sign up and get $100 of credit to try our products over 60 days!
@jamief04101d42510041f1f785
For your domain to be accessible using
domain.com
andwww.domain.com
, a few things need to be setup. The first is your DNS and the second is your web server.Your DNS is the easiest, so we can start there. To get started, login to your domain registrars website or, if you’re using DigitalOcean to host your DNS, login to DigitalOceans Control Panel and navigate to the Networking page and click on your domain to pull up your DNS records.
Once ready, you should have the following entries.
Simply replace
domain.com
with your real domain andDROPLET_PUBLIC_IP
with the IP address of your Droplet.Once your DNS is setup, you need to double-check your web servers configuration and make sure it’s configured to accept both. The configuration will differ depending on whether you’re using Apache or NGINX.
For Apache, your VirtualHost block should look like:
For NGINX, your Server Block should look like:
Of course, the above is just snippets and not full VirtualHost or Server Blocks. Simply make the needed changes to the lines that correspond to yours.
Once the above changes are made, you’ll need to restart Apache or NGINX:
or