Multiple Sites Opening the Same Site

I have 5 sites on easyengine setup server and all 5 of them are opening/redirecting to the 1st site I added.

Even the ip address of the server is opening the first site I added

Any advice?

Turns out its only sites with SSL are redirecting to main site. Here is my conf file with SSL

server {  
  listen 443;  
     ssl on;  
    ssl_certificate /var/www/cert/domain_combined.crt;  
    ssl_certificate_key /var/www/cert/domain_com1.key;  
    ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;  
    ssl_ciphers HIGH:!aNULL:!MD5;  

	server_name domain.com www.domain.com;  

	access_log   /var/log/nginx/domain.com.access.log rt_cache;  
	error_log    /var/log/nginx/domain.com.error.log;  

	root /var/www/domain.com/htdocs;  
	index index.php index.htm index.html;  

	include common/w3tc.conf;  
	include common/wpcommon.conf;  
	include common/locations.conf;  

}

I Guess above issue has been resolved.
https://rtcamp.com/support/topic/ssl-settings-redirecting-to-main-site/.

1 Like