Changeset 8400c2e in mod_gnutls
- Timestamp:
- Jan 29, 2013, 3:41:38 PM (10 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, msva, proxy-ticket, upstream
- Children:
- 2d0f6cf
- Parents:
- 369f47a
- git-author:
- Daniel Kahn Gillmor <dkg@…> (01/26/13 03:22:13)
- git-committer:
- Daniel Kahn Gillmor <dkg@…> (01/29/13 15:41:38)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
docs/mod_gnutls_manual-0.1.html
r369f47a r8400c2e 91 91 GnuTLSCache [<i>dbm</i>|<i>gdbm</i>|<i>memcache</i>|<i>none</i>] [path|server list|-]<br /> 92 92 <h5>Default:</h5> 93 GnuTLSCache gdbm "conf/gnutls_cache"<br />93 GnuTLSCache none<br /> 94 94 <h5>Context:</h5> 95 95 global config<br /> … … 105 105 Uses the GDBM backend of APR DBM to cache SSL Sessions results.<br /> 106 106 The argument is a relative or absolute path to be used as the DBM Cache file.<br /> 107 This is the default andrecommended option.<br />107 This is the recommended option.<br /> 108 108 <b>memcache</b><br /> 109 109 Uses a memcached server to cache the SSL Session.<br /> … … 112 112 <b>none</b><br /> 113 113 Turns off all caching of SSL Sessions.<br /> 114 This can significantly reduce the performance of mod_gnutls since even followup connections by a client must renegotiate parameters instead of reusing old ones.<br /> 114 This can significantly reduce the performance of 115 mod_gnutls since even followup connections by a client 116 must renegotiate parameters instead of reusing old 117 ones.<br /> 118 This is the default, since it requires no configuration.<br /> 115 119 </p> 116 120 <h4>GnuTLSCacheTimeout</h4> -
src/gnutls_config.c
r369f47a r8400c2e 581 581 sc->cache_timeout = apr_time_from_sec(300); 582 582 sc->cache_type = mgs_cache_none; 583 sc->cache_config = ap_server_root_relative(p, "conf/gnutls_cache");583 sc->cache_config = NULL; 584 584 /* By default enable session tickets */ 585 585 sc->tickets = GNUTLS_ENABLED_TRUE;
Note: See TracChangeset
for help on using the changeset viewer.