Update http_cache.conf.xml for a more complete set of instructions.

This commit is contained in:
Mark Crane 2015-03-22 04:15:26 +00:00
parent be4de11ed2
commit 6d13f8a872
1 changed files with 40 additions and 7 deletions

View File

@ -1,10 +1,43 @@
<configuration name="http_cache.conf" description="HTTP GET cache">
<settings>
<param name="max-urls" value="10000"/>
<param name="location" value="$${base_dir}/http_cache"/>
<param name="default-max-age" value="86400"/>
<param name="prefetch-thread-count" value="8"/>
<param name="prefetch-queue-size" value="100"/>
</settings>
<settings>
<!-- 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"/>
<!-- maximum size of cache -->
<param name="max-urls" value="10000"/>
<!-- location of cached files -->
<param name="location" value="$${base_dir}/http_cache"/>
<!-- if not specified by cache-control max-age directive, this value will be used
to expire cached files -->
<param name="default-max-age" value="86400"/>
<!-- size of the prefetch thread pool -->
<param name="prefetch-thread-count" value="8"/>
<!-- size of the prefetch request queue -->
<param name="prefetch-queue-size" value="100"/>
<!-- absolute path to CA bundle file -->
<param name="ssl-cacert" value="$${base_dir}/conf/cacert.pem"/>
<!-- verify certificates -->
<param name="ssl-verifypeer" value="true"/>
<!-- verify host name matches certificate -->
<param name="ssl-verifyhost" value="true"/>
</settings>
<profiles>
<!-- amazon s3 security credentials -->
<profile name="s3">
<aws-s3>
<!-- 20 character key identifier -->
<access-key-id><![CDATA[AKIAIOSFODNN7EXAMPLE]]></access-key-id>
<!-- 40 character secret -->
<secret-access-key><![CDATA[wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY]]></secret-access-key>
</aws-s3>
<!-- optional list of domains that this profile will automatically be applied to -->
<!-- if you wish to apply the s3 credentials to a domain not listed here, then use
{profile=s3}http://foo.s3... -->
<domains>
<domain name="bucket.s3.amazonaws.com"/>
</domains>
</profile>
</profiles>
</configuration>