[Nginx] Subdomain automatically loads another domain

Discussion in 'Installation/Configuration' started by meth, Sep 14, 2012.

  1. meth

    meth New Member

    I have ISPConfig 3.0.4.6 and Ningx installed in my server, I have created a subdomain in a domain A but this subdomains loads the webpage in domain B, I have try to find why, but I couldn't find any answer, here you have the two vhosts:
    Code:
    server {
            listen 91.121.163.140:80;
    		
            
            server_name a.mthweb.org ;
    
            root   /var/www/a.mthweb.org/web;
    		
    		
    		
            index index.html index.htm index.php index.cgi index.pl index.xhtml;
    		
    
    		
            error_page 400 /error/400.html;
            error_page 401 /error/401.html;
            error_page 403 /error/403.html;
            error_page 404 /error/404.html;
            error_page 405 /error/405.html;
            error_page 500 /error/500.html;
            error_page 502 /error/502.html;
            error_page 503 /error/503.html;
            recursive_error_pages on;
            location = /error/400.html {
                internal;
            }
            location = /error/401.html {
                internal;
            }
            location = /error/403.html {
                internal;
            }
            location = /error/404.html {
                internal;
            }
            location = /error/405.html {
                internal;
            }
            location = /error/500.html {
                internal;
            }
            location = /error/502.html {
                internal;
            }
            location = /error/503.html {
                internal;
            }
    		
            error_log /var/log/ispconfig/httpd/a.mthweb.org/error.log;
            access_log /var/log/ispconfig/httpd/a.mthweb.org/access.log combined;
    
            ## Disable .htaccess and other hidden files
            location ~ /\. {
                deny all;
                access_log off;
                log_not_found off;
            }
    		
            location = /favicon.ico {
                log_not_found off;
                access_log off;
            }
    
            location = /robots.txt {
                allow all;
                log_not_found off;
                access_log off;
            }
    		
            location /stats {
                index index.html index.php;
                auth_basic "Members Only";
                auth_basic_user_file /var/www/clients/client1/web10/.htpasswd_stats;
            }
    
            location ^~ /awstats-icon {
                alias /usr/share/awstats/icon;
            }
    
            location ~ \.php$ {
                deny all;
            }
    
    }
    
    Code:
    server {
            listen 91.121.163.140:80;
    		
            
            server_name hiphop-producciones.net *.hiphop-producciones.net *.hiphop-producciones.org hiphop-producciones.org;
    
            root   /var/www/hiphop-producciones.net/web;
    		
    		
    		
            index index.html index.htm index.php index.cgi index.pl index.xhtml;
    		
    
    		
            error_page 400 /error/400.html;
            error_page 401 /error/401.html;
            error_page 403 /error/403.html;
            error_page 404 /error/404.html;
            error_page 405 /error/405.html;
            error_page 500 /error/500.html;
            error_page 502 /error/502.html;
            error_page 503 /error/503.html;
            recursive_error_pages on;
            location = /error/400.html {
                internal;
            }
            location = /error/401.html {
                internal;
            }
            location = /error/403.html {
                internal;
            }
            location = /error/404.html {
                internal;
            }
            location = /error/405.html {
                internal;
            }
            location = /error/500.html {
                internal;
            }
            location = /error/502.html {
                internal;
            }
            location = /error/503.html {
                internal;
            }
    		
            error_log /var/log/ispconfig/httpd/hiphop-producciones.net/error.log;
            access_log /var/log/ispconfig/httpd/hiphop-producciones.net/access.log combined;
    
            ## Disable .htaccess and other hidden files
            location ~ /\. {
                deny all;
                access_log off;
                log_not_found off;
            }
    		
            location = /favicon.ico {
                log_not_found off;
                access_log off;
            }
    
            location = /robots.txt {
                allow all;
                log_not_found off;
                access_log off;
            }
    		
            location /stats {
                index index.html index.php;
                auth_basic "Members Only";
                auth_basic_user_file /var/www/clients/client1/web4/.htpasswd_stats;
            }
    
            location ^~ /awstats-icon {
                alias /usr/share/awstats/icon;
            }
    
            location ~ \.php$ {
                try_files $uri =404;
                include /etc/nginx/fastcgi_params;
                fastcgi_pass 127.0.0.1:9013;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                fastcgi_param PATH_INFO $fastcgi_script_name;
                fastcgi_intercept_errors on;
            }
    		
            location /cgi-bin/ {
                try_files $uri =404;
                include /etc/nginx/fastcgi_params;
                root /var/www/clients/client1/web4;
                gzip off;
                fastcgi_pass  unix:/var/run/fcgiwrap.socket;
                fastcgi_index index.cgi;
                fastcgi_param SCRIPT_FILENAME  $document_root$fastcgi_script_name;
                fastcgi_intercept_errors on;
            }
     	
    }
    
    As you can check first vhost loads the second vhost, but they have nothing in common, except the IP, but it is the server IP.

    Note: Two domains belong to the same client, other clients don't happen.
     
    Last edited: Sep 14, 2012
  2. falko

    falko Super Moderator Howtoforge Staff

    And the subdomain is listed in the server_name line? Maybe you made a small typo somewhere.
     
  3. meth

    meth New Member

    You have here the full host files, I didn't remove anything, they are the default files generated by ISPConfig
     

Share This Page