aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README10
1 files changed, 5 insertions, 5 deletions
diff --git a/README b/README
index 83ced25..4660ac7 100644
--- a/README
+++ b/README
@@ -54,10 +54,10 @@ GnuTLSCache dbm conf/gnutls_cache
54 GnuTLSEnable On 54 GnuTLSEnable On
55 55
56 # This is the Private key for your server. 56 # This is the Private key for your server.
57 GnuTLSKeyFile conf/server.key 57 GnuTLSX509KeyFile conf/server.key
58 58
59 # This is the Server Certificate. 59 # This is the Server Certificate.
60 GnuTLSCertificateFile conf/server.cert 60 GnuTLSX509CertificateFile conf/server.cert
61</VirtualHost> 61</VirtualHost>
62 62
63 63
@@ -73,8 +73,8 @@ NameVirtualHost 1.2.3.4:443
73# 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.
74 GNUTLSExportCertificates on 74 GNUTLSExportCertificates on
75 75
76 GnuTLSCertificateFile /etc/apache2/server-cert.pem 76 GnuTLSX509CertificateFile /etc/apache2/server-cert.pem
77 GnuTLSKeyFile /etc/apache2/server-key.pem 77 GnuTLSX509KeyFile /etc/apache2/server-key.pem
78 78
79# To enable SRP you must have these files installed. Check the gnutls srptool. 79# To enable SRP you must have these files installed. Check the gnutls srptool.
80 GnuTLSSRPPasswdFile /etc/apache2/tpasswd 80 GnuTLSSRPPasswdFile /etc/apache2/tpasswd
@@ -84,6 +84,6 @@ NameVirtualHost 1.2.3.4:443
84# GnuTLSClientVerify could be ignore or require. The GnuTLSClientCAFile 84# GnuTLSClientVerify could be ignore or require. The GnuTLSClientCAFile
85# contains the CAs to verify client certificates. 85# contains the CAs to verify client certificates.
86 GnuTLSClientVerify request 86 GnuTLSClientVerify request
87 GnuTLSClientCAFile ca.pem 87 GnuTLSX509CAFile ca.pem
88 ... 88 ...
89</VirtualHost> 89</VirtualHost>
>Gravatar Nokis Mavrogiannopoulos 2007-11-28 | * Put a limit on the number of times we try to handshake.Gravatar Paul Querna 2005-09-25 | * start the CA Certificate code.Gravatar Paul Querna 2005-05-24 | * - add lua to do client verificationGravatar Paul Querna 2005-05-17 | | | | | - only use gcrypt locking when required to * Refactor finding the correct server record to fix resumed sessions.0.2.00.2.xGravatar Paul Querna 2005-04-25 | * apr_table_setn doesn't copy the data. oops.Gravatar Paul Querna 2005-04-24 | * We already have a Certificate, use it directly. With SNI, GnuTLS doesn't ↵Gravatar Paul Querna 2005-04-24 | | | | properly update it's internal state. ick. * if there aren't any certs.. still set something.Gravatar Paul Querna 2005-04-24 | * add SSL_SERVER_S_DN and SSL_SERVER_I_DN Gravatar Paul Querna 2005-04-24 | * - move hooks to gnutls_hooks.cGravatar Paul Querna 2005-04-24 | | | | | - use 'mgs_' as the prefix for all symbols, instead of mixed prefixes. * move config functions to their own file. Gravatar Paul Querna 2005-04-24 | * - remove more debug logging.Gravatar Paul Querna 2005-04-22 | | | | | - fix a crash by changing the certificate structure *after* starting the handshake. * client auth is sort of working.Gravatar Paul Querna 2005-04-22 | * working SNI. Not so working Client Cert support.Gravatar Paul Querna 2005-04-21 | * include support for 2.0.xxGravatar Paul Querna 2005-04-08 | * wrap the debug log in maintainer mode.Gravatar Paul Querna 2005-04-08 | * - remove anno credsGravatar Paul Querna 2005-04-06 | | | | | | | | - initial attempt at Server Name Extension - change to adding 'mod_gnutls' to the server sig instead of GnuTLS/ - fix for EOF/EOC/EOS buckets - 'general' code cleanups * checkpoint the work so far. The DBM cache needs a little more work.Gravatar Paul Querna 2005-04-05 | * - make memcahe optionalGravatar Paul Querna 2005-04-04 | | | | | | - update for 2.1.x branch changes. - some mucking around with the conf stuff * use apr to parse hostnames..Gravatar Paul Querna 2004-12-12 | * working support for a ssl session cache via memcached.Gravatar Paul Querna 2004-12-10 | * add check for apr_memcacheGravatar Paul Querna 2004-12-09 | * fixes and stuff that i should of already committed.Gravatar Paul Querna 2004-12-09 | * re-order the cipher types.Gravatar Paul Querna 2004-12-06 | | | | | Add a fixups hook and some Basic Env vars * setting proper ignores.Gravatar Paul Querna 2004-12-02 | | | | | | | adding an empty cache files trying to fix >16kb writes. * adding autofoo for memcache support