summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2003-03-14 00:22:10 +0100
committerBradley Nicholes <bnicholes@apache.org>2003-03-14 00:22:10 +0100
commit415283e60aefc6ef6f731e965a043ab5ac52262c (patch)
tree9afa652a8e632b6ec10deb217249da4fc08639a1
parentAdded the optional ssl_enable functions to allow mod_proxy to hook into (diff)
downloadapache2-415283e60aefc6ef6f731e965a043ab5ac52262c.tar.xz
apache2-415283e60aefc6ef6f731e965a043ab5ac52262c.zip
Added documentation for the directives SecureListen and NWSSLTrustedCerts
that are provided through mod_nw_ssl for NetWare git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99007 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--docs/manual/mod/mod_nw_ssl.xml52
-rw-r--r--docs/manual/platform/netware.xml8
2 files changed, 60 insertions, 0 deletions
diff --git a/docs/manual/mod/mod_nw_ssl.xml b/docs/manual/mod/mod_nw_ssl.xml
new file mode 100644
index 0000000000..b180ef96d7
--- /dev/null
+++ b/docs/manual/mod/mod_nw_ssl.xml
@@ -0,0 +1,52 @@
+<?xml version="1.0"?>
+<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
+<?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
+<modulesynopsis>
+
+<name>mod_nw_ssl</name>
+<description>Enable SSL encryption for NetWare</description>
+<status>Base</status>
+<sourcefile>mod_nw_ssl.c</sourcefile>
+<identifier>nwssl_module</identifier>
+<compatibility>NetWare only</compatibility>
+
+<summary>
+ <p>This module enable SSL encryption for a specified port. It
+ takes advantage of the SSL encryption functionality that is
+ built into the NetWare operating system.</p>
+</summary>
+
+
+<directivesynopsis>
+<name>SecureListen</name>
+<description>Enables SSL encryption for the specified port</description>
+<syntax>SecureListen <var>[IP-address:]portnumber</var> <var>Certificate-Name</var> <var>[MUTUAL]</var></syntax>
+<contextlist><context>server config</context></contextlist>
+
+<usage>
+ <p>Specifies the port and the eDirectory based certificate name
+ that will be used to enable SSL encryption. An optional third
+ parameter also enable mutual authentication.</p>
+</usage>
+</directivesynopsis>
+
+<directivesynopsis>
+<name>NWSSLTrustedCerts</name>
+<description>List of additional client certificates</description>
+<syntax>NWSSLTrustedCerts <var>filename</var><var>[filename]</var><var>...</var></syntax>
+<contextlist><context>server config</context></contextlist>
+
+<usage>
+ <p>Specifies a list of client certificate files (DER format)
+ that are used when creating a proxied SSL connection. Each
+ client certificate used by a server must be listed separately
+ in its own .der file.</p>
+</usage>
+
+<seealso><directive module="mod_proxy">ProxyPass</directive></seealso>
+<seealso><directive module="mod_proxy">ProxyPassReverse</directive></seealso>
+
+</directivesynopsis>
+
+</modulesynopsis>
+
diff --git a/docs/manual/platform/netware.xml b/docs/manual/platform/netware.xml
index 987a907e24..1b2aae35ec 100644
--- a/docs/manual/platform/netware.xml
+++ b/docs/manual/platform/netware.xml
@@ -365,6 +365,14 @@
<li><directive module="core">CGIMapExtension</directive> -
This directive maps a CGI file extension to a script interpreter.</li>
</ul>
+ <ul>
+ <li><directive module="mod_nw_ssl">SecureListen</directive> -
+ Enables SSL encryption for a specified port.</li>
+ </ul>
+ <ul>
+ <li><directive module="mod_nw_ssl">NWSSLTrustedCerts</directive> -
+ Adds trusted certificates that are used to create secure connections to proxied servers.</li>
+ </ul>
</section>