LoadModule gnutls_module modules/mod_gnutls.so
# 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 /var/cache/mod_gnutls/gnutls_cache
# the following is an example virtual-host as you could configure it.
# however, this is just an example. You should always put your own
# configuration stuff inside your own files within vhosts.d/ directory.
#
# # 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/server.key
#
# # This is the Server Certificate.
# GnuTLSCertificateFile conf/server.cert
#
# vim: ts=4 filetype=apache