Multiple server_name entries not working

Igor Sysoev igor at sysoev.ru
Tue May 31 06:07:02 MSD 2011


On Tue, May 31, 2011 at 02:14:04AM +0100, gvim wrote:
> Nginx 1.0.3
> 
> I have a virtual host file with a simple config:
> 
> server {
>      listen 8080;
>      server_name   domain.com  www.domain.com;
>      root   /var/www/html/dm2011/pub;
>      access_log   /var/log/nginx/access.log main;
> 
>      location / {
>        index index.htm index.html;
>      }
> }
> 
> Requests for 'domain.com' return the correct index page but requests for 'www.domain.com' return only the "Welcome to nginx!" page. I tried *.domain.com also as the 2nd name but the result was the same. There are no DNS issues with both versions of the domain.

If you set
      server_name   domain.com  www.domain.com;
what does "nginx -t" show ?


-- 
Igor Sysoev



More information about the nginx mailing list