The error "client that refused the server configuration" usually means that somewhere in your configuration there are Allow from and Deny from directives that prevent access. Read the mod_authz_host documentation for more details .
You should solve this problem in your VirtualHost by adding something like:
<Location /> Allow from all Order Deny,Allow </Location>
Or alternatively with the Directory directive:
<Directory "D:/Devel/matysart/matysart_dev1"> Allow from all Order Deny,Allow </Directory>
Some research into your Apache configuration files is likely to result in default restrictions for the default DocumentRoot.
larsks Dec 07 '11 at 2:05 a.m. 2011-12-07 14:05
source share