Standard installation of EasyPHP - 5.2.10
What I did is just remove comments from code sample provided for creating virtual host in httpd.conf:
# <VirtualHost *:80>
# ServerAdmin
webmaster@dummy-host.localhost
# DocumentRoot "${path}/apache/docs/dummy-host.localhost"
# ServerName dummy-host.localhost
# ServerAlias www.dummy-host.localhost
# ErrorLog "logs/dummy-host.localhost-error.log"
# CustomLog "logs/dummy-host.localhost-access.log" common
# </VirtualHost>
I setup localhost with DocumentRoot different then ${path} and trying to launch local website typing [
localhost]. So, it throws Access Forbidden and doesn't work until I add <Directory> configuration to previously configured virtual host with allowing access.
Could <Directory> config be added to code snippet at httpd.conf?