Hi everyone! I'm getting stuck with this error in the Apache logs, in the OX GUI all the time I get the nasty "403 Forbidden Error":

client denied by server configuration: proxy:balancer://oxcluster/ajax/folders, referer: https://mail.rodvie.com.ve/ox6/ox.html

I have everything in a Debian Squeeze server, the OX version is 6.20.7.0-2 and the Apache server version is 2.2.16-6+squeeze8.

My /etc/apache2/conf.d/proxy_ajp.conf is:

<Location /webservices>
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
Allow from 192.168.1.0/24
</Location>

<Location /servlet/axis2/services>
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
Allow from 192.168.1.0/24
</Location>

<IfModule mod_proxy_ajp.c>
ProxyRequests Off
<Proxy balancer://oxcluster>
Order deny,allow
Allow from all
BalancerMember ajp://localhost:8009 timeout=100 smax=0 ttl=60 retry=60 loadfactor=50 route=OX1
ProxySet stickysession=JSESSIONID
</Proxy>
<Proxy /ajax>
ProxyPass balancer://oxcluster/ajax
</Proxy>
<Proxy /servlet>
ProxyPass balancer://oxcluster/servlet
</Proxy>
<Proxy /infostore>
ProxyPass balancer://oxcluster/infostore
</Proxy>
<Proxy /publications>
ProxyPass balancer://oxcluster/publications
</Proxy>
<Proxy /Microsoft-Server-ActiveSync>
ProxyPass balancer://oxcluster/Microsoft-Server-ActiveSync
</Proxy>
<Proxy /usm-json>
ProxyPass balancer://oxcluster/usm-json
</Proxy>
<Proxy /webservices>
ProxyPass balancer://oxcluster/webservices
</Proxy>
</IfModule>

I don't know where to look, if anyone has any idea or suggestion please!

Best regards!


Francisco