diff options
author | Nokis Mavrogiannopoulos | 2007-11-28 19:08:36 +0000 |
---|---|---|
committer | Nokis Mavrogiannopoulos | 2007-11-28 19:08:36 +0000 |
commit | 30c3470aac7dc3553882b018e69cf1f1ce13d5ff (patch) | |
tree | f5af62d622c1a9a6b20d2ee6737d7271d2c9043b /README.ENV | |
parent | 2b9b5d44a122c9f6433dbf15c4b0a7ecf921c19f (diff) |
Diffstat (limited to 'README.ENV')
-rw-r--r-- | README.ENV | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/README.ENV b/README.ENV new file mode 100644 index 0000000..828e68e --- /dev/null +++ b/README.ENV | |||
@@ -0,0 +1,21 @@ | |||
1 | All the environment variables set by this module are: | ||
2 | |||
3 | HTTPS: can be "on" or "off" | ||
4 | SSL_VERSION_LIBRARY: The version of the gnutls library | ||
5 | SSL_VERSION_INTERFACE: The version of this module | ||
6 | SSL_PROTOCOL: The SSL or TLS protocol name (such as "TLS 1.0" etc.) | ||
7 | SSL_CIPHER: The SSL or TLS cipher suite name. | ||
8 | SSL_COMPRESS_METHOD: The negotiated compression method (NULL or DEFLATE) | ||
9 | SSL_SRP_USER: The SRP username used for authentication. | ||
10 | SSL_CLIENT_VERIFY: | ||
11 | whether the client's certificate was verified. (NONE if none was sent, or SUCCESS or FAILED) | ||
12 | SSL_CIPHER_USEKEYSIZE and SSL_CIPHER_ALGKEYSIZE: The number if bits used in the used cipher | ||
13 | algorithm. This does not fully reflect the security level since the size of | ||
14 | RSA or DHE key exchange parameters affect the security level too. | ||
15 | SSL_CIPHER_EXPORT: true or false. Whether the cipher suite negotiated is an export one. | ||
16 | SSL_SESSION_ID: The session ID negotiated in this session. Can be the same during | ||
17 | client reloads. | ||
18 | SSL_CLIENT_V_REMAIN: The number of days until the client's certificate is expired. | ||
19 | |||
20 | SSL_CLIENT_CERT: The PEM-encoded client certificate | ||
21 | SSL_SERVER_CERT: The PEM-encoded server certificate | ||