Hi all, I am trying to cache webdav traffic through a squid proxy, I have the squid proxy configured in accel mode and have turned on the "Cache-control: Public" on my server for the reason that every request I send does contain a "Authorization" header, however I am unable cache the data. The webdav traffic does seem to be flowing through the proxy without a problem. Below are the config sections that I have configured: -------------BEGIN squid.conf------------------- http_port 3128 accel defaultsite=virtualsvn cache_peer apache.myserver.com parent 80 0 no-query originserver name=myAccel login=PASS acl our_sites dstdomain virtualsvn http_access allow our_sites cache_peer_access myAccel allow our_sites cache_peer_access myAccel deny all cache_dir ufs C:\squidcache 100 16 256 # below statement "should" be unneccessary but added anyway refresh_pattern -i . 100 80% 4320 ignore-auth ignore-no-cache -------------END squid.conf------------------- Any suggestion would be much appreciated Thank you -seymen