Question
Adding a second virtual host to same IP using Apache2 failing
Currently using Apache 2 on Debian 8 with my droplet successfully. When adding a new conf in sites-available and after the reload, my call to the second virtual provides the original site after a short hesitation and white screen. The original site is using a LetsEncrypt cert but here’s the conf I think is being used for the original site (first). The second paste is the new virtual.
root@ciwise-1:/etc/apache2/sites-enabled# cat 000-default.conf
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHELOGDIR}/error.log
CustomLog ${APACHELOGDIR}/access.log combined
RewriteEngine on
RewriteCond %{SERVERNAME} =ciwise.com
RewriteRule ^ https://%{SERVERNAME}%{REQUEST_URI} [END,QSA,R=permanent]
</VirtualHost>
And … the second in /etc/apache2/sites-enabled
root@ciwise-1:/etc/apache2/sites-enabled# cat org.conf
<VirtualHost *:80>
ServerAdmin david@ciwise.com
ServerName ciwise.org
ServerAlias www.ciwise.org
DocumentRoot /var/www/org
ErrorLog ${APACHELOGDIR}/error.log
CustomLog ${APACHELOGDIR}/access.log combined
</VirtualHost>
Can anyone help me get the second (.org) virtual working? It redirects to https://ciwise.com now.
David
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.
×