Hello,
I would need your support, but for this is better to describe a bit my configuration:
My problem is the following: one of the name virtual hosts (nvh1.com) is working correctly and points out to its directory /var/www/nvh1/html/ but when I am accessing the other (nvh2.com) than mainsite.com is loaded. nvh1.com.conf is configured similar to nvh2.com.conf! What is strange for me is that I’ve tested different configurations and I get the same behavior in following scenario:
Here are also my configuration files: 000-default.conf
ServerAdmin webmaster@mainsite.com
DocumentRoot /var/www/droplet_html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>```
**mainsite.com.conf (this was the old 000-default.conf)**
```<VirtualHost *:80>
ServerName mainsite.com
ServerAdmin webmaster@mainsite.com
ServerAlias www.mainsite.com mainsite.org www.mainsite.org
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<VirtualHost *:443>
SSLEngine on
SSLProtocol all –SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2: RC4+RSA:+HIGH:+MEDIUM
SSLCertificateFile /path/to/ssl/ssl.crt
SSLCertificateKeyFile /path/to/ssl/key/myown.key
SSLCertificateChainFile /path/to/ssl/sub.class1.server.ca.pem
ServerName mainsite.com
ServerAdmin webmaster@mainsite.com
ServerAlias www.mainsite.com mainsite.org www.mainsite.org
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>```
**nvh1.com.conf**
```<VirtualHost *:80>
ServerName nvh1.com
ServerAdmin webmaster@nvh1.com
ServerAlias www.nvh1.com
DocumentRoot /var/www/nvh1.com/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>```
**nvh2.com.conf**
```<VirtualHost *:80>
ServerName nvh2.com
ServerAdmin webmaster@nvh2.com
ServerAlias www.nvh2.com
DocumentRoot /var/www/nvh2.com/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>```
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.
selfsolved (see comments): issue was from wordpress which in the last version has a special multisite feature. Since both mainsite.com and nvh2.com had both wordpress and wordpress was not properly configured for multisites nvh2.com was pointing to mainsite.com, eventhough it was a different copy of the wordpres source files. Actual status: wordpress is deleted from nvh2.com folder and a simple index.html shows that apache is solving correctly all virtual base name servers. @sierracircle: thanks for the knowhow, I’ve adopted some of your config lines!
Click below to sign up and get $100 of credit to try our products over 60 days!
“does it make sense to uninstall apache and to reinstall it. Is there any tutorial for this?”
probably not. if apache itself is working (websites being served) than it would be just more work
the problem, it seems, is in the conf files somewhere.
Here is a working conf file I have that I usually just copy for all other sites. The host this runs on has 7 sites that all run identical conf files. Each site uses an SSL cert from StartSSL
I’ve solved a part of the problem: browser history are hindering with http / https requests for visited sites: i.e. if you visited a site that has https browser will always serve https. I have deleted browser history and cache and now with all sites unregistered and only 000-default.conf everything points out correctly. I will now load one by one the conf files and see if this will help.
And another: on mainsite.com a wordpress is installed. On nvh2.com were also copied the sources of wordpress and I was about to install it. Once I have deleted wordpress from nvh2.com directory this is not pointing anymore to mainsite.com.
Direction is clear I have to research how to install 2 wordpress sites one with https and one without on the same server using virtual name servers.
i am continuing with trial&error. I have unregistered all sites besides the 000-default.conf. At that moment nvh2.com and mainsite.com were pointing correctly to what 000-default.conf is indicating (/var/www/droplet_html).
I tried to register again only nvh2.com and it goes again wrongly to mainsite.com (even though mainsite.com is not registered). The issue is that mainsite.com has ssl configured so when I am writing http://nvh2.com in browser I am redirected to https://nvh2.com, which actually try to load https://mainsite.com. I’ve tried to register again mainsite.com which is working correctly but now after unregistering both nvh2.com and mainsite.com I get redirected for both sites to the https version and I am getting a “Secure Connection Failed” error when in fact they should point again to 000-default.conf…
now I am trying to find a way to get back to that configuration were no sites are registered but due to DNS setup they are all pointing to 000-default.conf and also what is in 000-default.conf is served…
if it’s worth mentioning droplet name is mainsite.com and fqdn is set up properly. If it’s helping i can post also the contents of hosts and hostname.
Another question would be if any other solution does not work, does it make sense to uninstall apache and to reinstall it. Is there any tutorial for this?
Thanks, Vlad