I have an apache server setup on Zentyal 3.4/Ubuntu 13.10. I have disabled the default virtual hosts file and enabled one with the following:
<VirtualHost *:80>
ServerAdmin webmaster@SERVER
ServerName dev.net
DocumentRoot /var/www/dev
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/dev/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
However, when i set the url to dev.net, a page comes up saying "This is the default web page for this server. The web server is running but no content has been added, yet." This is not the content of the index.php in /var/www/dev . In fact, I even removed the default index.html from /var/www and I still get the message.
PHP is installed and enabled. Is this a problem with php? If not, do you have any ideas?