Monday, January 17, 2011

Multiple domains with Nginx

Easy peasy


http {
           server {
                         listen 80;
                         server_name domain1.com;
                         location / {
                                      index index.html;

                                      root /var/www/domain1;
                         }           }
           server {
                         listen 80;
                         server_name domain2.com;
                         location / {
                                      index index.html;
                                      root /var/www/domain2;
                         }
          }
}

1 comment:

Anonymous said...

Another easy method is using Jelastic and an NGINX server.

You can read more about how to run multiple custom domains with NGINX