For some reason both domain1.org and domain2.org are both directing into /var/www is there something I missed? Apache2 error log is clean too? I just don't get it. It should be a simple vhosting
<VirtualHost *:80>
ServerName domain1.org
ServerAdmin webmaster@localhost
DocumentRoot /var/www/
<Directory /var/www/>
DirectoryIndex index.php
Options -Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel debug
CustomLog /var/log/apache2/access.log combined
</VirtualHost>
<VirtualHost *:80>
ServerName domain2.org
ServerAdmin webmaster@localhost
DocumentRoot /var/www/wordpress-1/
<Directory /var/www/wordpress-1/ >
DirectoryIndex index.php
Options -Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel debug
CustomLog /var/log/apache2/access.log combined
</VirtualHost>
