Commit c8ee29ca authored by Joe Orton's avatar Joe Orton
Browse files

Transforms.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1857649 13f79535-47bb-0310-9956-ffa450edef68
parent 4cdaec88
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -521,6 +521,8 @@
<li><a href="mod_alias.html#redirectmatch">RedirectMatch</a></li>
<li><a href="mod_alias.html#redirectpermanent">RedirectPermanent</a></li>
<li><a href="mod_alias.html#redirecttemp">RedirectTemp</a></li>
<li><a href="mod_socache_redis.html#redisconnpoolttl">RedisConnPoolTTL</a></li>
<li><a href="mod_socache_redis.html#redistimeout">RedisTimeout</a></li>
<li><a href="mod_reflector.html#reflectorheader">ReflectorHeader</a></li>
<li><a href="core.html#regexdefaultoptions">RegexDefaultOptions</a></li>
<li><a href="core.html#registerhttpmethod">RegisterHttpMethod</a></li>
+1 −0
Original line number Diff line number Diff line
@@ -229,6 +229,7 @@ modules into the server at start-up or restart time</dd>
<dt><a href="mod_socache_dbm.html">mod_socache_dbm</a></dt><dd>DBM based shared object cache provider.</dd>
<dt><a href="mod_socache_dc.html">mod_socache_dc</a></dt><dd>Distcache based shared object cache provider.</dd>
<dt><a href="mod_socache_memcache.html">mod_socache_memcache</a></dt><dd>Memcache based shared object cache provider.</dd>
<dt><a href="mod_socache_redis.html">mod_socache_redis</a></dt><dd>Redis based shared object cache provider.</dd>
<dt><a href="mod_socache_shmcb.html">mod_socache_shmcb</a></dt><dd>shmcb based shared object cache provider.</dd>
<dt><a href="mod_speling.html">mod_speling</a></dt><dd>Attempts to correct mistaken URLs by ignoring
capitalization, or attempting to correct various minor
+4 −3
Original line number Diff line number Diff line
@@ -31,7 +31,8 @@
<table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Redis based shared object cache provider.</td></tr>
<tr><th><a href="module-dict.html#Status">Status:</a></th><td>Extension</td></tr>
<tr><th><a href="module-dict.html#ModuleIdentifier">ModuleIdentifier:</a></th><td>socache_redis_module</td></tr>
<tr><th><a href="module-dict.html#SourceFile">SourceFile:</a></th><td>mod_socache_redis.c</td></tr></table>
<tr><th><a href="module-dict.html#SourceFile">SourceFile:</a></th><td>mod_socache_redis.c</td></tr>
<tr><th><a href="module-dict.html#Compatibility">Compatibility:</a></th><td>Available in Apache 2.4.39 and later</td></tr></table>
<h3>Summary</h3>

    <p><code class="module"><a href="../mod/mod_socache_redis.html">mod_socache_redis</a></code> is a shared object cache provider
@@ -73,7 +74,7 @@
<tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_socache_redis</td></tr>
<tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>Available in Apache 2.5 and later</td></tr>
<tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>Available in Apache 2.4.39 and later</td></tr>
</table>
    <p>Set the time to keep idle connections with the Redis server(s)
    alive (threaded platforms only).</p>
@@ -101,7 +102,7 @@ RedisConnPoolTTL 60</pre>
<tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host</td></tr>
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_socache_redis</td></tr>
<tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>Available in Apache 2.5 and later</td></tr>
<tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>Available in Apache 2.4.39 and later</td></tr>
</table>
    <p>Set the Read/Write timeout used for the connection with the Redis
    server(s).</p>
+11 −0
Original line number Diff line number Diff line
@@ -87,6 +87,17 @@ switch before dumping core</td></tr>
    operating system is not configured to write core files to the working directory
    of the crashing processes.</p>

    <div class="warning">
      <h3>Security note for Linux systems</h3>

      <p>Using this directive on Linux may allow other processes on
      the system (if running with similar privileges, such as CGI
      scripts) to attach to httpd children via the <code>ptrace</code>
      system call.  This may make weaken the protection from certain
      security attacks.  It is not recommended to use this directive
      on production systems.</p>
    </div>
    
    <div class="note"><h3>Core Dumps on Linux</h3>
      <p>If Apache httpd starts as root and switches to another user, the
      Linux kernel <em>disables</em> core dumps even if the directory is
+1 −1
Original line number Diff line number Diff line
<?xml version="1.0"?>
<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
<?xml-stylesheet type="text/xsl" href="../style/manual.de.xsl"?>
<!-- English Revision: 151408:1853619 (outdated) -->
<!-- English Revision: 151408:1857648 (outdated) -->

<!--
 Licensed to the Apache Software Foundation (ASF) under one or more
Loading