From: Graham Leggett Date: Wed, 7 Dec 2011 16:47:32 +0000 (+0000) Subject: Add reference to the mod_socache modules in the mod_ssl docs. X-Git-Tag: 2.5.0-alpha~7695 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cdda948864172df741659c0cffcfc811b239d235;p=thirdparty%2Fapache%2Fhttpd.git Add reference to the mod_socache modules in the mod_ssl docs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1211528 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_ssl.xml b/docs/manual/mod/mod_ssl.xml index 557f6e5d7c8..ba3e6ea0ef8 100644 --- a/docs/manual/mod/mod_ssl.xml +++ b/docs/manual/mod/mod_ssl.xml @@ -450,8 +450,9 @@ The following five storage types are currently supported:

This makes use of a DBM hashfile on the local disk to synchronize the local OpenSSL memory caches of the server - processes. This session cache may suffer reliability issues under - high load.

+ processes. This session cache may suffer reliability issues under + high load. To use this, ensure that + mod_socache_dbm is loaded.

  • shmcb:/path/to/datafile[(size)] @@ -459,7 +460,8 @@ The following five storage types are currently supported:

    (approx. size bytes in size) inside a shared memory segment in RAM (established via /path/to/datafile) to synchronize the local OpenSSL memory caches of the server - processes. This is the recommended session cache.

  • + processes. This is the recommended session cache. To use this, + ensure that mod_socache_shmcb is loaded.

  • dc:UNIX:/path/to/socket @@ -470,7 +472,8 @@ The following five storage types are currently supported:

    for example, UNIX:/path/to/socket specifies a UNIX domain socket (typically a local dc_client proxy); IP:server.example.com:9001 specifies an IP - address.

  • + address. To use this, ensure that + mod_socache_dc is loaded.