From a3f0dec3f6005b3a3003f7fc1d9118b8e3017452 Mon Sep 17 00:00:00 2001 From: Graham Leggett Date: Wed, 7 Dec 2011 16:48:54 +0000 Subject: [PATCH] Add reference to the mod_socache modules in the mod_ssl docs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1211529 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_ssl.xml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/manual/mod/mod_ssl.xml b/docs/manual/mod/mod_ssl.xml index 557f6e5d7c..ba3e6ea0ef 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.

    -- 2.50.1