I'm trying to install magento on my localhost using virtual host (so it can work) but even I already creating the file in /etc/apache2/sites-available
with the name magento.conf
with the code:
<VirtualHost *:80>
DocumentRoot /var/www/magento
<Directory /var/www/magento/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
</Directory>
If I try to access http://magento.localhost
the apache page is usually loaded Apache2 Ubuntu Default Page
and the files in the folder do not open so I can start the magento installation.
Does anyone have an idea of what might be happening?