I have this configuration, a file z500.trunk in /etc/apache2/sites-enabled/ (it's symlink to file in sites-available):
<VirtualHost 127.0.2.1:80>
DocumentRoot "/home/kuba/projects/z500/trunk/www"
ServerName z500.trunk
Alias /FilesZ500 "/home/kuba/projects/z500/files"
Alias /css-cache "/home/kuba/projects/z500/trunk/tmp/css"
Alias /js-cache "/home/kuba/projects/z500/trunk/tmp/js"
</VirtualHost>
and in /etc/hosts:
127.0.2.1 z500.trunk
but when I access the site using a browser (http://z500.trunk/), I've got normal default page, not the virtual one.
It was working in 13.04, what's wrong here?