2011-10-06 16:25:03 +00:00
|
|
|
<configuration name="http_cache.conf" description="HTTP GET cache">
|
|
|
|
<settings>
|
2013-03-18 21:58:51 +00:00
|
|
|
<!-- set to true if you want to enable http:// and https:// formats. Do not use if mod_httapi is also loaded -->
|
|
|
|
<param name="enable-file-formats" value="false"/>
|
2011-10-06 16:25:03 +00:00
|
|
|
<param name="max-urls" value="10000"/>
|
2014-09-01 00:22:08 +00:00
|
|
|
<param name="location" value="$${cache_dir}"/>
|
2011-10-06 16:25:03 +00:00
|
|
|
<param name="default-max-age" value="86400"/>
|
2012-01-25 15:11:31 +00:00
|
|
|
<param name="prefetch-thread-count" value="8"/>
|
|
|
|
<param name="prefetch-queue-size" value="100"/>
|
2013-03-18 21:58:51 +00:00
|
|
|
<!-- absolute path to CA bundle file -->
|
2014-09-01 00:22:08 +00:00
|
|
|
<param name="ssl-cacert" value="$${certs_dir}/cacert.pem"/>
|
2013-03-18 21:58:51 +00:00
|
|
|
<!-- verify certificates -->
|
|
|
|
<param name="ssl-verifypeer" value="true"/>
|
|
|
|
<!-- verify host name matches certificate -->
|
|
|
|
<param name="ssl-verifyhost" value="true"/>
|
2016-04-01 14:38:16 +00:00
|
|
|
<!-- default is 300 seconds, override here -->
|
|
|
|
<!--param name="connect-timeout" value="300"/-->
|
|
|
|
<!-- default is 300 seconds, override here -->
|
|
|
|
<!--param name="download-timeout" value="300"/-->
|
2011-10-06 16:25:03 +00:00
|
|
|
</settings>
|
|
|
|
</configuration>
|