You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2017/03/26 11:51:48 UTC

svn commit: r1788722 - /httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache_socache.xml

Author: jailletc36
Date: Sun Mar 26 11:51:47 2017
New Revision: 1788722

URL: http://svn.apache.org/viewvc?rev=1788722&view=rev
Log:
Fix typo spotted by angeloxx (r1788719 in trunk)

+ synch with trunk to improve syntax highlight

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache_socache.xml

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache_socache.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache_socache.xml?rev=1788722&r1=1788721&r2=1788722&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache_socache.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_cache_socache.xml Sun Mar 26 11:51:47 2017
@@ -46,14 +46,14 @@ HTTP caching filter.</description>
 # Turn on caching
 CacheSocache shmcb
 CacheSocacheMaxSize 102400
-&lt;Location /foo&gt;
+&lt;Location "/foo"&gt;
     CacheEnable socache
 &lt;/Location&gt;
 
 # Fall back to the disk cache
 CacheSocache shmcb
 CacheSocacheMaxSize 102400
-&lt;Location /foo&gt;
+&lt;Location "/foo"&gt;
     CacheEnable socache
     CacheEnable disk
 &lt;/Location&gt;
@@ -62,7 +62,7 @@ CacheSocacheMaxSize 102400
     <note><title>Note:</title>
       <p><module>mod_cache_socache</module> requires the services of
       <module>mod_cache</module>, which must be loaded before
-      mod_cache_socache.</p>
+      <module>mod_cache_socache</module>.</p>
     </note>
 </summary>
 <seealso><module>mod_cache</module></seealso>
@@ -199,7 +199,7 @@ cache</description>
     cache, as opposed to data being served from the cache.</p>
 
     <highlight language="config">
-      CacheReadSize 102400
+      CacheSocacheReadSize 102400
     </highlight>
 </usage>
 </directivesynopsis>