Changeset 4f39196 in mod_gnutls
- Timestamp:
- Jun 6, 2020, 11:21:15 AM (8 months ago)
- Branches:
- asyncio, master
- Children:
- a4e3b2c
- Parents:
- 796d9a3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/mod_gnutls_manual.md
r796d9a3 r4f39196 90 90 Context: server config 91 91 92 This directive configures the TLS Session Cache for `mod_gnutls`. This 93 could be shared between machines of different architectures. If the 94 selected cache implementation is not thread-safe, access is serialized 95 using the `gnutls-cache` mutex. 92 This directive configures the TLS session cache for `mod_gnutls`. The 93 TLS session cache is used both as a server side session cache if not 94 using session tickets (for TLS 1.2 and earlier), and if `mod_gnutls` 95 is configured as a HTTPS reverse proxy also to cache client sessions 96 to backend servers (for TLS 1.3 only). 97 98 A cache accessed over network (e.g. memcache) may be shared between 99 machines of different architectures. If the selected cache 100 implementation is not thread-safe, access is serialized using the 101 `gnutls-cache` mutex. 96 102 97 103 Which cache implementations are available depends on your Apache … … 112 118 `dbm` 113 119 : Uses a DBM cache file. The parameter is a relative or absolute 114 path to be used as the DBM cache file. 120 path to be used as the DBM cache file. Note that the dbm cache has 121 a size limitation for entries that is too small for OCSP responses 122 or proxy session data. 115 123 116 124 Example: `dbm:cache/gnutls_cache`
Note: See TracChangeset
for help on using the changeset viewer.