about summary refs log tree commit homepage
path: root/Documentation
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-05-10 02:30:29 +0000
committerEric Wong <e@80x24.org>2019-05-10 02:30:29 +0000
commit995eefdf9f09f1a4621e3aab0184c5ae2787ca0c (patch)
treed806646312d2d3a14fce975cc24bb8a55d470d47 /Documentation
parent2ca6808f7d91b1dd44cd5b6eb31e9b272d865891 (diff)
downloadyahns-995eefdf9f09f1a4621e3aab0184c5ae2787ca0c.tar.gz
Might as well... this has been in use at YHBT.net for ~4 years
at this point.  And given nginx has new corporate overlords,
maybe a decidedly non-enterprisey alternative is worth
"marketing" :P

Previous discussion from 2016:
https://YHBT.net/yahns-public/20160220081619.GA10850@dcvr.yhbt.net/
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/yahns_config.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/yahns_config.pod b/Documentation/yahns_config.pod
index 737e085..08c2e27 100644
--- a/Documentation/yahns_config.pod
+++ b/Documentation/yahns_config.pod
@@ -448,10 +448,10 @@ An example which seems to work is:
   )
 
   # use defaults provided by Ruby on top of OpenSSL,
-  # but disable client certificate verification as it is rare:
+  # but disable client certificate verification as it is rare for servers:
   ssl_ctx.set_params(verify_mode: OpenSSL::SSL::VERIFY_NONE)
 
-  # Built-in session cache (only works if worker_processes is nil or 1)
+  # Built-in session cache (only useful if worker_processes is nil or 1)
   ssl_ctx.session_cache_mode = OpenSSL::SSL::SSLContext::SESSION_CACHE_SERVER
 
   app(:rack, "/path/to/my/app/config.ru") do