]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
word smithing
authorAlan T. DeKok <aland@freeradius.org>
Fri, 25 Jan 2019 13:55:04 +0000 (08:55 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 25 Jan 2019 13:57:03 +0000 (08:57 -0500)
raddb/mods-available/cache_tls

index cb334926c79e42634f8be9e56bd57de93c569f53..f9901422859b0bf23bd730e2b282f4bbbe9a93d4 100644 (file)
@@ -8,17 +8,28 @@
 #
 # ## Cache TLS Session Module
 #
-#  The `cache_tls_session` module responses for resiliency on TLS sessions.
+#  The `cache_tls_session` module caches TLS sessions for resiliency.
 #
-#  Please see the `cache` module for full documentation.
+#  This module should be listed in a `send Access-Accept` section to
+#  write the cache, and in `recv Access-Request` to read the cache.
+#  When it runs, it will cache the current TLS session.  That cache
+#  allows for fast session resumption.
 #
-
+#  The "rbtree" cache back-end is an "in memory" cache.  Which means
+#  that the TLS session cache will be lost if the server restarts.
+#  The TLS session cache can be preserved by using an external
+#  back-end, such as "memcached" or "redis".
+#
+#  Also, if an external backend is used, then the TLS session cache
+#  can be shared across multiple RADIUS servers.  That makes for
+#  simple load balancing with full session resumption.
 #
-# ## Sample configuration
+#  Please see the `cache` module for full documentation on the cache
+#  configuration.
 #
 
 #
-# ### Cache TLS Session
+# ### Cache TLS Session Configuration
 #
 cache cache_tls_session {
        #
@@ -58,7 +69,9 @@ cache cache_tls_session {
 }
 
 #
-# ### Cache OCSP Session
+# ### Cache OCSP Session Configuration
+#
+# In addition to TLS sessions, the OCSP queries can be cached.
 #
 cache cache_ocsp {
        #