diff options
author | Christian Parpart <trapni@gentoo.org> | 2005-04-13 02:03:08 +0000 |
---|---|---|
committer | Christian Parpart <trapni@gentoo.org> | 2005-04-13 02:03:08 +0000 |
commit | 0b3ec387d7fbea7696ce7fb80b0bfececb5caedb (patch) | |
tree | 724ca5e1c3451f3551d732eedc034582152cb543 /www-apache/mod_gnutls/files/47_mod_gnutls.conf | |
parent | adding missing AddDirectoryIndex directive to config (diff) | |
download | historical-0b3ec387d7fbea7696ce7fb80b0bfececb5caedb.tar.gz historical-0b3ec387d7fbea7696ce7fb80b0bfececb5caedb.tar.bz2 historical-0b3ec387d7fbea7696ce7fb80b0bfececb5caedb.zip |
adding missing "Listen 443" line and comment to config file
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'www-apache/mod_gnutls/files/47_mod_gnutls.conf')
-rw-r--r-- | www-apache/mod_gnutls/files/47_mod_gnutls.conf | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/www-apache/mod_gnutls/files/47_mod_gnutls.conf b/www-apache/mod_gnutls/files/47_mod_gnutls.conf index 14ab98160373..5cf125a79a0e 100644 --- a/www-apache/mod_gnutls/files/47_mod_gnutls.conf +++ b/www-apache/mod_gnutls/files/47_mod_gnutls.conf @@ -1,12 +1,17 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_gnutls/files/47_mod_gnutls.conf,v 1.1 2005/04/08 22:47:39 trapni Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_gnutls/files/47_mod_gnutls.conf,v 1.2 2005/04/13 02:03:08 trapni Exp $ <IfDefine GNUTLS> LoadModule gnutls_module modules/mod_gnutls.so </IfDefine> <IfDefine mod_gnutls.c> + # Listen on standard SSL port. + # Enable this by default to keep default config in sync with mod_ssl. + # Though, this should make migrating from mod_ssl to mod_gnutls easier. + Listen 443 + # 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. |