Changeset 8400c2e in mod_gnutls


Ignore:
Timestamp:
Jan 29, 2013, 3:41:38 PM (10 years ago)
Author:
Daniel Kahn Gillmor <dkg@…>
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)
Message:

properly document the GnuTLSCache directive

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • docs/mod_gnutls_manual-0.1.html

    r369f47a r8400c2e  
    9191                GnuTLSCache [<i>dbm</i>|<i>gdbm</i>|<i>memcache</i>|<i>none</i>] [path|server list|-]<br />
    9292                <h5>Default:</h5>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    93                 GnuTLSCache gdbm "conf/gnutls_cache"<br />
     93                GnuTLSCache none<br />
    9494                <h5>Context:</h5>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    9595                global config<br />
     
    105105               Uses the GDBM backend of APR DBM to cache SSL Sessions results.<br />
    106106               The argument is a relative or absolute path to be used as the DBM Cache file.<br />
    107                This is the default and recommended option.<br />
     107               This is the recommended option.<br />
    108108               <b>memcache</b><br />
    109109               Uses a memcached server to cache the SSL Session.<br />
     
    112112               <b>none</b><br />
    113113               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 />
    115119            </p>
    116120            <h4>GnuTLSCacheTimeout</h4>
  • src/gnutls_config.c

    r369f47a r8400c2e  
    581581    sc->cache_timeout = apr_time_from_sec(300);
    582582    sc->cache_type = mgs_cache_none;
    583     sc->cache_config = ap_server_root_relative(p, "conf/gnutls_cache");
     583    sc->cache_config = NULL;
    584584        /* By default enable session tickets */
    585585    sc->tickets = GNUTLS_ENABLED_TRUE;
Note: See TracChangeset for help on using the changeset viewer.