summaryrefslogtreecommitdiffstatsabout
path: root/src/mod_gnutls.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mod_gnutls.c')
-rw-r--r--src/mod_gnutls.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/mod_gnutls.c b/src/mod_gnutls.c
index a6e5528..4d70fbd 100644
--- a/src/mod_gnutls.c
+++ b/src/mod_gnutls.c
@@ -64,6 +64,10 @@ static const command_rec mgs_config_cmds[] = {
64 NULL, 64 NULL,
65 RSRC_CONF, 65 RSRC_CONF,
66 "Set the CA File to verify Client Certificates"), 66 "Set the CA File to verify Client Certificates"),
67 AP_INIT_TAKE1("GnuTLSPGPKeyringFile", mgs_set_keyring_file,
68 NULL,
69 RSRC_CONF,
70 "Set the Keyring File to verify Client Certificates"),
67 AP_INIT_TAKE1("GnuTLSDHFile", mgs_set_dh_file, 71 AP_INIT_TAKE1("GnuTLSDHFile", mgs_set_dh_file,
68 NULL, 72 NULL,
69 RSRC_CONF, 73 RSRC_CONF,
@@ -75,11 +79,19 @@ static const command_rec mgs_config_cmds[] = {
75 AP_INIT_TAKE1("GnuTLSCertificateFile", mgs_set_cert_file, 79 AP_INIT_TAKE1("GnuTLSCertificateFile", mgs_set_cert_file,
76 NULL, 80 NULL,
77 RSRC_CONF, 81 RSRC_CONF,
78 "SSL Server Key file"), 82 "SSL Server Certificate file"),
79 AP_INIT_TAKE1("GnuTLSKeyFile", mgs_set_key_file, 83 AP_INIT_TAKE1("GnuTLSKeyFile", mgs_set_key_file,
80 NULL, 84 NULL,
81 RSRC_CONF, 85 RSRC_CONF,
82 "SSL Server SRP Password file"), 86 "SSL Server Private Key file"),
87 AP_INIT_TAKE1("GnuTLSPGPCertificateFile", mgs_set_pgpcert_file,
88 NULL,
89 RSRC_CONF,
90 "SSL Server PGP Certificate file"),
91 AP_INIT_TAKE1("GnuTLSPGPKeyFile", mgs_set_pgpkey_file,
92 NULL,
93 RSRC_CONF,
94 "SSL Server PGP Private key file"),
83 AP_INIT_TAKE1("GnuTLSSRPPasswdFile", mgs_set_srp_tpasswd_file, 95 AP_INIT_TAKE1("GnuTLSSRPPasswdFile", mgs_set_srp_tpasswd_file,
84 NULL, 96 NULL,
85 RSRC_CONF, 97 RSRC_CONF,