By brklyn8900
I was able to set up nginx server blocks as per this tutorial. When I try to access the sites through the respective domain names I am directed to the same site. I’m not sure if this is an nginx issue or a dns issue.
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!
Hi!
I see different content on each of those domains, so it looks like you got it working! It would be great if you could share what the root cause of your issue was and how you fixed it. That would help others who end up at this question.
Your configuration files look correct. One thing many people forget is that you need to restart Nginx after making any changes:
sudo service nginx restart
remove [ default_server ipv6only=on ] in the listen property in the server 2 file. Only one block should be designated as default_server.
Correct configuration: Block one:
server { listen 80; listen [::]:80 default_server ipv6only=on;
Block two:
server { listen 80; listen [::]:80;
I have the same question; I have multiple domains redirecting to the same nginx server, but my PHP code handles each site differently.
When I have set up the one domain to point at my servers IP, I simply see the old site.
Any solutions on this? Is it simply to remove ipv6only=on?
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.