summaryrefslogtreecommitdiff
path: root/www-apache/mod_gnutls/files/47_mod_gnutls.conf
blob: cd88204c9e837a7d48a40851b6919ce13ffc406a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<IfDefine GNUTLS>
LoadModule gnutls_module  modules/mod_gnutls.so

# mod_gnutls can optionally 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
</IfDefine>

# 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.
#<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/server.key
#
#	# This is the Server Certificate.  
#	GnuTLSCertificateFile conf/server.cert
#</VirtualHost>

# vim: ts=4 filetype=apache