Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 2ab30256f4e1bd14e4378681d54b1f8c > files > 2

apache-mod_gnutls-0.5.5-2mdv2010.0.i586.rpm

<IfDefine HAVE_GNUTLS>
    <IfModule !mod_gnutls.c>
	LoadModule gnutls_module	extramodules/mod_gnutls.so
    </IfModule>
</IfDefine>

<IfModule mod_gnutls.c>

    # mod_gnutls can optionaly use a memcached server to store it's SSL Sessions.
    # This is useful in a cluster enviroment, where you want all of your servers 
    # to share a single SSL Session Cache.
    #GnuTLSCache memcache "127.0.0.1 server2.example.com server3.example.com"

    # The Default method is to use a DBM backed Cache.  It isn't super fast, but 
    # it is portable and does not require another server to be running like memcached.
    GnuTLSCache dbm conf/mod_gnutls/gnutls_cache

    #<VirtualHost 1.2.3.4:443>
    #    # insert other directives ... here ...
    #
    #    # This enables the mod_gnutls Handlers for this Virtual Host
    #    GnuTLSEnable On
    #
    #    # This is the Private key for your server.
    #    GnuTLSKeyFile conf/mod_gnutls/server.key
    #
    #    # This is the Server Certificate.  
    #    GnuTLSCertificateFile conf/mod_gnutls/server.cert
    #</VirtualHost>

</IfModule>