I have two domains: I would like both domains are in the same virtual hosts targeted, that is, that if I enter the domain 1 shall be the website and if I open domain 2 open the same site.
This is solved in the network of Digital Ocean or in my Virtual Host server.
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!
Hey there,
This is going to depend on what webserver you are running, which you do not mention. I’ll give you the answer in general terms which should be good enough for you to google how to configure in your specific application.
What you want to do is setup a VirtualHost with your primary domain and a few alternate domains. I’ll give an example config below for Nginx as that is my webserver of choice.
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.html index.htm;
server_name mydomain.com myotherdomain.com moredomains.net;
}
The important bit to look at there is the “server_name” portion where I’ve put multiple domain names. Each of those domains, if their DNS is setup properly, when visited would show the same content.
In apache, this might look something like this:
<VirtualHost *:80>
DocumentRoot "/usr/share/nginx/html"
ServerName mydomain.com
ServerAlias myotherdomain.com
# ...
</VirtualHost>
Hope that helps you get this solved!
Happy Coding,
Andrew DigitalOcean TechOps
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.