Report this

What is the reason for this report?

Multiple sites on different domains using nginx

Posted on July 1, 2013

different server_name parameters for different server doesn’t work.



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.

You may need to post up the configs for any help.

We have an article on setting up virtual hosts for multiple domains with nginx: https://www.digitalocean.com/community/articles/how-to-set-up-nginx-virtual-hosts-server-blocks-on-ubuntu-12-04-lts--3

I have to nginx configs: <br>/etc/nginx/sites-enabled/sub1.mydomain.com: <br>server { <br> listen 80; <br> server_name sub1.mydomain.com; <br> location / { <br> proxy_pass http://localhost:8080; <br> } <br>} <br> <br>/etc/nginx/sites-enabled/sub2.mydomain.com: <br>server { <br> listen 80; <br> server_name sub2.mydomain.com; <br> location / { <br> proxy_pass http://localhost:8081; <br> } <br>} <br> <br>I made two a records in dns: <br>sub1 IN A <my-ip> <br>sub2 IN A <my-ip> <br> <br>Have i done everything correctly?

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.