chuck 97/04/12 11:31:57
Modified: htdocs/manual/mod directives.html mod_proxy.html
Log:
Added CacheDirLength and CacheDirLevels. Fixed link for
CacheLastModifedFactor.
Revision Changes Path
1.16 +3 -1 apache/htdocs/manual/mod/directives.html
Index: directives.html
===================================================================
RCS file: /export/home/cvs/apache/htdocs/manual/mod/directives.html,v
retrieving revision 1.15
retrieving revision 1.16
diff -C3 -r1.15 -r1.16
*** directives.html 1997/04/11 22:23:25 1.15
--- directives.html 1997/04/12 18:31:54 1.16
***************
*** 47,54 ****
<li><A HREF="mod_browser.html#browsermatch">BrowserMatch</A>
<li><A HREF="mod_browser.html#browsermatchnocase">BrowserMatchNoCase</A>
<li><A HREF="mod_proxy.html#cachedefaultexpire">CacheDefaultExpire</A>
<li><A HREF="mod_proxy.html#cachegcinterval">CacheGcInterval</A>
! <li><A HREF="mod_proxy.html#cachelastmodfied">CacheLastModified</A>
<li><A HREF="mod_proxy.html#cachemaxexpire">CacheMaxExpire</A>
<li><A
HREF="mod_negotiation.html#cachenegotiateddocs">CacheNegotiatedDocs</A>
<li><A HREF="mod_proxy.html#cacheroot">CacheRoot</A>
--- 47,56 ----
<li><A HREF="mod_browser.html#browsermatch">BrowserMatch</A>
<li><A HREF="mod_browser.html#browsermatchnocase">BrowserMatchNoCase</A>
<li><A HREF="mod_proxy.html#cachedefaultexpire">CacheDefaultExpire</A>
+ <li><A HREF="mod_proxy.html#cachedirlength">CacheDirLength</A>
+ <li><A HREF="mod_proxy.html#cachedirlevels">CacheDirLevels</A>
<li><A HREF="mod_proxy.html#cachegcinterval">CacheGcInterval</A>
! <li><A
HREF="mod_proxy.html#cachelastmodifiedfactor">CacheLastModifiedFactor</A>
<li><A HREF="mod_proxy.html#cachemaxexpire">CacheMaxExpire</A>
<li><A
HREF="mod_negotiation.html#cachenegotiateddocs">CacheNegotiatedDocs</A>
<li><A HREF="mod_proxy.html#cacheroot">CacheRoot</A>
1.16 +29 -4 apache/htdocs/manual/mod/mod_proxy.html
Index: mod_proxy.html
===================================================================
RCS file: /export/home/cvs/apache/htdocs/manual/mod/mod_proxy.html,v
retrieving revision 1.15
retrieving revision 1.16
diff -C3 -r1.15 -r1.16
*** mod_proxy.html 1997/04/07 01:35:52 1.15
--- mod_proxy.html 1997/04/12 18:31:55 1.16
***************
*** 37,46 ****
<li><a href="#proxyblock">ProxyBlock</a>
<li><a href="#cacheroot">CacheRoot</a>
<li><a href="#cachesize">CacheSize</a>
- <li><a href="#cachegcinterval">CacheGcInterval</a>
<li><a href="#cachemaxexpire">CacheMaxExpire</a>
- <li><a href="#cachelastmodifiedfactor">CacheLastModifiedFactor</a>
<li><a href="#cachedefaultexpire">CacheDefaultExpire</a>
<li><a href="#nocache">NoCache</a>
</ul>
--- 37,48 ----
<li><a href="#proxyblock">ProxyBlock</a>
<li><a href="#cacheroot">CacheRoot</a>
<li><a href="#cachesize">CacheSize</a>
<li><a href="#cachemaxexpire">CacheMaxExpire</a>
<li><a href="#cachedefaultexpire">CacheDefaultExpire</a>
+ <li><a href="#cachelastmodifiedfactor">CacheLastModifiedFactor</a>
+ <li><a href="#cachegcinterval">CacheGcInterval</a>
+ <li><a href="#cachedirlevels">CacheDirLevels</a>
+ <li><a href="#cachedirlength">CacheDirLength</a>
<li><a href="#nocache">NoCache</a>
</ul>
***************
*** 201,207 ****
Apache 1.1 and later.<p>
If the origin HTTP server did not supply an expiry date for the
! document, then estimate on using the formula
<pre>
expiry-period = time-since-last-modification * <factor>
</pre>
--- 203,209 ----
Apache 1.1 and later.<p>
If the origin HTTP server did not supply an expiry date for the
! document, then estimate one using the formula
<pre>
expiry-period = time-since-last-modification * <factor>
</pre>
***************
*** 211,216 ****
--- 213,241 ----
<p>If the expiry-period would be longer than that set by CacheMaxExpire,
then the latter takes precedence.
+ <A name="cachedirlevels"><h2>CacheDirLevels</h2></A>
+ <strong>Syntax:</strong> CacheDirLevels <em><levels></em><br>
+ <strong>Default:</strong> </code>CacheDirLevels 3</code><br>
+ <strong>Context:</strong> server config<br>
+ <strong>Status:</strong> Base<br>
+ <strong>Module:</strong> mod_proxy<br>
+ <strong>Compatibility:</strong> CacheDirLevels is only available in
+ Apache 1.1 and later.<p>
+
+ CacheDirLevels sets the number of levels of subdirectories in the cache.
+ Cached data will be saved this many directory levels below CacheRoot.
+
+ <A name="cachedirlength"><h2>CacheDirLength</h2></A>
+ <strong>Syntax:</strong> CacheDirLength <em><length></em><br>
+ <strong>Default:</strong> </code>CacheDirLength 1</code><br>
+ <strong>Context:</strong> server config<br>
+ <strong>Status:</strong> Base<br>
+ <strong>Module:</strong> mod_proxy<br>
+ <strong>Compatibility:</strong> CacheDirLength is only available in
+ Apache 1.1 and later.<p>
+
+ CacheDirLength sets the number of characters in proxy cache subdirectory
names.
+
<A name="cachedefaultexpire"><h2>CacheDefaultExpire</h2></A>
<strong>Syntax:</strong> CacheDefaultExpire <em><time></em><br>
<strong>Default:</strong> </code>CacheDefaultExpire 1</code><br>
***************
*** 220,226 ****
<strong>Compatibility:</strong> CacheDefaultExpire is only available in
Apache 1.1 and later.<p>
! If the document is fetched via a protocol that does not support expirytimes,
then use <time> hours as the expiry time.
<a href="#cachemaxexpire">CacheMaxExpire</a> does <strong>not</strong>
override.
--- 245,251 ----
<strong>Compatibility:</strong> CacheDefaultExpire is only available in
Apache 1.1 and later.<p>
! If the document is fetched via a protocol that does not support expiry
times,
then use <time> hours as the expiry time.
<a href="#cachemaxexpire">CacheMaxExpire</a> does <strong>not</strong>
override.