By looking at the CacheEnable example in the documentation it seems as if I would have to enable it for every protocol. Also the current documentation is a bit misleading - http://httpd.apache.org/docs/2.2/mod/mod_cache.html#cacheenable states:
# Cache proxied url's
CacheEnable disk /
This
however will not cache proxied urls will it? A proxy request does not
come in the form of 'Get /' - it comes in the form of 'GET http://'
(<protocol>://). I can see the above example caching requests to
/ and below that are setup via ProxyPass but not forward proxy.
Can I do something like this:
CacheEnable disk ://
Will this cover every protocol that forward proxy handles? Thanks.