Part of the old vhost files looked like this:
DocumentRoot "/var/www/myVhost"
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory "/var/www/myVhost">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
After upgrading to Ubuntu 13.10 / Apache 2.4, the vhost is ignored until you remove all the <Directory>
configuration. Where did this go?
vhosts
(sites-enabled) that stopped working after the upgrade until you remove the <Directory> options. – Lauzon