summaryrefslogtreecommitdiffstatsabout
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2007-12-10 22:30:00 (GMT)
committer Nokis Mavrogiannopoulos <nmav@gnutls.org>2007-12-10 22:30:00 (GMT)
commitc0a2ae1088095769537db1edacf07140127fb112 (patch)
treea02feaf33379e34ab37730d140ddbbe9255e08c3
parenta2cb12fbd6bbb41074fcaa6759985e353a7f5a61 (diff)
-rw-r--r--README10
1 files changed, 3 insertions, 7 deletions
diff --git a/README b/README
index 85418de..83ced25 100644
--- a/README
+++ b/README
@@ -11,7 +11,7 @@ to debug. I wanted to understand how it worked, and I had recently heard about
11GnuTLS, so long story short, I decided to implement a mod_gnutls. 11GnuTLS, so long story short, I decided to implement a mod_gnutls.
12 12
13Lines of Code in mod_ssl: 15,324 13Lines of Code in mod_ssl: 15,324
14Lines of Code in mod_gnutls: 1,886 14Lines of Code in mod_gnutls: 3,594
15 15
16Because of writing mod_gnutls, I now understand how input and output filters work, 16Because of writing mod_gnutls, I now understand how input and output filters work,
17better than I ever thought possible. It was a little painful at times, and some parts 17better than I ever thought possible. It was a little painful at times, and some parts
@@ -63,17 +63,13 @@ GnuTLSCache dbm conf/gnutls_cache
63 63
64# a more advanced configuration 64# a more advanced configuration
65GnuTLSCache dbm "/var/cache/www-tls-cache/cache" 65GnuTLSCache dbm "/var/cache/www-tls-cache/cache"
66GnuTLSCacheTimeout 500 66GnuTLSCacheTimeout 600
67GnuTLSProtocols TLS1.1 TLS1.0 SSL3.0
68NameVirtualHost 1.2.3.4:443 67NameVirtualHost 1.2.3.4:443
69 68
70<VirtualHost 1.2.3.4:443> 69<VirtualHost 1.2.3.4:443>
71 Servername server.com:443 70 Servername server.com:443
72 GnuTLSEnable on 71 GnuTLSEnable on
73 GnuTLSCiphers AES-128-CBC 3DES-CBC ARCFOUR-128 72 GnuTLSPriority NORMAL
74 GnuTLSKeyExchangeAlgorithms RSA DHE-RSA DHE-DSS SRP SRP-RSA SRP-DSS
75 GnuTLSMACAlgorithms SHA1 MD5
76 GnuTLSCompressionMethods NULL
77# To export exactly the same environment variables as mod_ssl to CGI scripts. 73# To export exactly the same environment variables as mod_ssl to CGI scripts.
78 GNUTLSExportCertificates on 74 GNUTLSExportCertificates on
79 75