Installed apache, set up the virtual hosts.
But i get the following message:
Code: Select all
You don't have permission to access / on this server.
and I'm accessing it from the local host.
Code: Select all
You don't have permission to access / on this server.
Code: Select all
<VirtualHost *:8084>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/immo
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/immo>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>