I have added two domains to my droplet (domain1.com and domain2.com)
I want to rewrite both www and non-www to domain1.com i.e.:
domain1.com => domain1.com domain2.com => domain1.com www.domain1.com => domain1.com www.domain2.com => domain1.com
It feels like I have tried every combination of server blocks in nginx but I cannot get it to work properly.
nginx version: nginx/1.4.6 (Ubuntu)
How do I set this up?
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.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
I have currently a non-www domain, but would like to redirect the www to mine so I believe i have to add an entry to the CNAME field but not quite sure what values to insert. Anyone that could give me a helping hand?
Hi there,
I’ve tried the above and it just doesn’t seem to work for me. Can you explain to me what you mean by “Make sure that the “www” records exist for each domain: www CNAME @”?
Rashid.
Make sure that the “www” records exist for each domain:
www CNAME @
Then, edit the current virtualhosts for your domain name and make sure
server_name
is set todomain.com
and notwww.domain.com
.Finally, add the following virtualhost for each domain:
Don’t forget to restart nginx after adding the virtualhosts.