Question
virtual hosts problem on ubuntu 12.4
Hi,
I am fairly new to this, so I probably missed something obvious.
I have a ubuntu 12.4 apache2 setup. I have two sites running, they are working fine. But when I try to set up a third one, the second site gets redirected to the third. If I set up a fourth it gets redirected to the last. My vhost config are all like:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/generationalbator/public_html
ServerName www.generationalbator.be
Serveralias generationalbator.be
Serveralias www.generationalbator.be
ErrorLog /var/www/generationalbator/logs/error.log
Loglevel warn
CustomLog /var/www/generationalbator/logs/access.log combined
<Directory /var/www/generationalbator/public_html>
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
Any ideas?
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.
×