From 68abfe037322800734d273f0e43f60181ea5d377 Mon Sep 17 00:00:00 2001
From: Andre Malo
When entering a file path on non-Unix platforms, care should be taken + to make sure that only forward slashed are used even though the platform + may allow the use of back slashes. In general it is a good idea to always + use forward slashes throughout the configuration files.
+mod_proxy
extension for
CONNECT
request handlingmod_proxy
extension for
CONNECT
request handlingDescription: | How much compression do we apply to the output |
---|---|
Syntax: | CompressionLevelvalue |
Default: | Zlib's default |
Description: | Fragment size to be compressed at one time by zlib |
Syntax: | DeflateBufferSize value |
Default: | DeflateBufferSize 8096 |
Context: | server config, virtual host |
Status: | Extension |
Module: | mod_deflate |
The CompressionLevel
directive specifies
- what level of compression should be used, the higher the value,
- the better the compression, but the more CPU time is required to
- achieve this.
The value must between 1 (less compression) and 9 (more compression).
+The DeflateBufferSize
directive specifies
+ the size in bytes of the fragments that zlib should compress at one
+ time.
Description: | Fragment size to be compressed at one time by zlib |
---|---|
Syntax: | DeflateBufferSize value |
Default: | DeflateBufferSize 8096 |
Description: | How much compression do we apply to the output |
Syntax: | DeflateCompressionLevelvalue |
Default: | Zlib's default |
Context: | server config, virtual host |
Status: | Extension |
Module: | mod_deflate |
Compatibility: | This directive is available since Apache 2.0.45 |
The DeflateBufferSize
directive specifies
- the size in bytes of the fragments that zlib should compress at one
- time.
The DeflateCompressionLevel
directive specifies
+ what level of compression should be used, the higher the value,
+ the better the compression, but the more CPU time is required to
+ achieve this.
The value must between 1 (less compression) and 9 (more compression).
The DeflateFilterNote
directive
specifies that a note about compression ratios should be attached
diff --git a/docs/manual/mod/mod_log_config.html.en b/docs/manual/mod/mod_log_config.html.en
index dee1979db8..fb33e89753 100644
--- a/docs/manual/mod/mod_log_config.html.en
+++ b/docs/manual/mod/mod_log_config.html.en
@@ -268,6 +268,12 @@
If a program is used, then it will be run under the user who started httpd. This will be root if the server was started by root; be sure that the program is secure.
+When entering a file path on non-Unix platforms, care should be taken + to make sure that only forward slashed are used even though the platform + may allow the use of back slashes. In general it is a good idea to always + use forward slashes throughout the configuration files.
The following Mutex types are available:
none
+none | no
This is the default where no Mutex is used at all. Use it at your own risk. But because currently the Mutex is mainly used for synchronizing write access to the SSL Session Cache you can live without it as long as you accept a sometimes garbled Session Cache. So it's not recommended to leave this the default. Instead configure a real Mutex.
file:/path/to/mutex
+posixsem
+ + This is an elegant Mutex variant where a Posix Semaphore is used when possible. + It is only available when the underlying platform + and APR supports it.
sysvsem
+ + This is a somewhat elegant Mutex variant where a SystemV IPC Semaphore is used when + possible. It is possible to "leak" SysV semaphores if processes crash before + the semaphore is removed. It is only available when the underlying platform + and APR supports it.
sem
+ + This directive tells the SSL Module to pick the "best" semaphore implementation + available to it, choosing between Posix and SystemV IPC, in that order. It is only + available when the underlying platform and APR supports at least one of the 2.
pthread
- This is the portable and (under Unix) always provided Mutex variant where
- a physical (lock-)file is used as the Mutex. Always use a local disk
- filesystem for /path/to/mutex
and never a file residing on a
- NFS- or AFS-filesystem. Note: Internally, the Process ID (PID) of the
+ This directive tells the SSL Module to use Posix thread mutexes. It is only available
+ if the underlying platform and APR supports it.
fcntl:/path/to/mutex
+
+ This is a portable Mutex variant where a physical (lock-)file and the fcntl()
+ fucntion are used as the Mutex.
+ Always use a local disk filesystem for /path/to/mutex
and never a file
+ residing on a NFS- or AFS-filesystem. It is only available when the underlying platform
+ and APR supports it. Note: Internally, the Process ID (PID) of the
Apache parent process is automatically appended to
/path/to/mutex
to make it unique, so you don't have to worry
about conflicts yourself. Notice that this type of mutex is not available
under the Win32 environment. There you have to use the semaphore
mutex.
sem
+flock:/path/to/mutex
+
+ This is similar to the fcntl:/path/to/mutex
method with the
+ exception that the flock()
function is used to provide file
+ locking. It is only available when the underlying platform
+ and APR supports it.
file:/path/to/mutex
+
+ This directive tells the SSL Module to pick the "best" file locking implementation
+ available to it, choosing between fcntl
and flock
,
+ in that order. It is only available when the underlying platform and APR supports
+ at least one of the 2.
default | yes
- This is the most elegant but also most non-portable Mutex variant where a - SysV IPC Semaphore (under Unix) and a Windows Mutex (under Win32) is used - when possible. It is only available when the underlying platform - supports it.
SSLMutex file:/usr/local/apache/logs/ssl_mutex
diff --git a/docs/manual/mod/quickreference.html.de b/docs/manual/mod/quickreference.html.de
index e64e438d92..a96c09d3f6 100644
--- a/docs/manual/mod/quickreference.html.de
+++ b/docs/manual/mod/quickreference.html.de
@@ -243,33 +243,33 @@ module
ChildPerUserID user-id group-id
num-children s M
-Specify user ID and group ID for a number of child
processes CompressionLevelvalue sv E
-How much compression do we apply to the output ContentDigest On|Off Off svdh C Aktiviert die Generierung von Content-MD5
+ContentDigest On|Off Off svdh C
-Aktiviert die Generierung von Content-MD5
HTTP-Response-HeadernCookieDomain domain svdh E
-The domain to which the tracking cookie applies CookieExpires expiry-period svdh E
-Expiry time for the tracking cookie CookieLog filename sv B
-Sets filename for the logging of cookies CookieName token Apache svdh E
-Name of the tracking cookie CookieStyle
- Netscape|Cookie|Cookie2|RFC2109|RFC2965 Netscape svdh E
-Format of the cookie header field CookieTracking on|off off svdh E
-Enables tracking cookie CoreDumpDirectory directory s M Directory where Apache attempts to
+ CookieDomain domain svdh E
+The domain to which the tracking cookie applies CookieExpires expiry-period svdh E
+Expiry time for the tracking cookie CookieLog filename sv B
+Sets filename for the logging of cookies CookieName token Apache svdh E
+Name of the tracking cookie CookieStyle
+ Netscape|Cookie|Cookie2|RFC2109|RFC2965 Netscape svdh E
+Format of the cookie header field CookieTracking on|off off svdh E
+Enables tracking cookie CoreDumpDirectory directory s M
-Directory where Apache attempts to
switch before dumping core CustomLog file|pipe
+ CustomLog file|pipe
format|nickname
-[env=[!]environment-variable] sv B
-Sets filename and format of log file Dav On|Off|provider-name Off d E
-Enable WebDAV HTTP methods DavDepthInfinity on|off off svd E
-Allow PROPFIND, Depth: Infinity requests DavLockDB file-path sv E
-Location of the DAV lock database DavMinTimeout seconds 0 svd E Minimum amount of time the server holds a lock on
+[env=[!]environment-variable] sv B
+Sets filename and format of log file Dav On|Off|provider-name Off d E
+Enable WebDAV HTTP methods DavDepthInfinity on|off off svd E
+Allow PROPFIND, Depth: Infinity requests DavLockDB file-path sv E
+Location of the DAV lock database DavMinTimeout seconds 0 svd E
-Minimum amount of time the server holds a lock on
a DAV resource DefaultIcon url-path svdh B Icon to display for files when no specific icon is
+ DefaultIcon url-path svdh B
-Icon to display for files when no specific icon is
configured DefaultLanguage MIME-lang svdh B Sets all files in the given scope to the specified
+ DefaultLanguage MIME-lang svdh B
-Sets all files in the given scope to the specified
language DefaultType MIME-Type text/plain svdh C MIME-Content-Type, der gesendet wird, wenn der Server den Typ
+ DefaultType MIME-Type text/plain svdh C
-MIME-Content-Type, der gesendet wird, wenn der Server den Typ
nicht auf andere Weise ermitteln kann. DeflateBufferSize value 8096 sv E
+Fragment size to be compressed at one time by zlib DeflateBufferSize value 8096 sv E
+Fragment size to be compressed at one time by zlib DeflateCompressionLevelvalue sv E How much compression do we apply to the output DeflateFilterNote [type] notename sv E Places the compression ratio in a note for logging DeflateMemLevel value 9 sv E How much memory should be used by zlib for compression DeflateWindowSize value 15 sv E
@@ -456,125 +456,127 @@ Virtual-HostsZlib compression window size NoProxy host [host] ... sv E Hosts, domains, or networks that will be connected
to directly NumServers number 2 s M
-Total number of children alive at the same time Options
- [+|-]Option [[+|-]Option] ... All svdh C Definiert, welche Eigenscahften oder Funktionen in einem
+ NWSSLTrustedCerts filename[filename]... s B
+List of additional client certificates Options
+ [+|-]Option [[+|-]Option] ... All svdh C
-Definiert, welche Eigenscahften oder Funktionen in einem
bestimmten Verzeichnis verfügbar sind Order ordering Deny,Allow dh B Controls the default access state and the order in which
+ Order ordering Deny,Allow dh B
-Controls the default access state and the order in which
Allow
and Deny
are
evaluated.PassEnv env-variable [env-variable]
-... svdh B
-Passes environment variables from the shell PidFile filename logs/httpd.pid s M File where the server records the process ID
+ PassEnv env-variable [env-variable]
+... svdh B
+Passes environment variables from the shell PidFile filename logs/httpd.pid s M
-File where the server records the process ID
of the daemon ProtocolEcho On|Off sv X
-Turn the echo server on or off <Proxy wildcard-url> ...</Proxy> sv E Container for directives applied to proxied
+ ProtocolEcho On|Off sv X
+Turn the echo server on or off <Proxy wildcard-url> ...</Proxy> sv E
-Container for directives applied to proxied
resources ProxyBlock *|word|host|domain
-[word|host|domain] ... sv E Words, hosts, or domains that are banned from being
+ ProxyBlock *|word|host|domain
+[word|host|domain] ... sv E
-Words, hosts, or domains that are banned from being
proxied ProxyDomain Domain sv E
-Default domain name for proxied requests ProxyErrorOverride On|Off Off sv E
-Override error pages for proxied content ProxyIOBufferSize bytes sv E IO buffer size for outgoing HTTP and FTP
+ ProxyDomain Domain sv E
+Default domain name for proxied requests ProxyErrorOverride On|Off Off sv E
+Override error pages for proxied content ProxyIOBufferSize bytes sv E
-IO buffer size for outgoing HTTP and FTP
connections <ProxyMatch regex> ...</ProxyMatch> sv E Container for directives applied to regular-expression-matched
+ <ProxyMatch regex> ...</ProxyMatch> sv E
-Container for directives applied to regular-expression-matched
proxied resources ProxyMaxForwards number 10 sv E Maximium number of proxies that a request can be forwarded
+ ProxyMaxForwards number 10 sv E
-Maximium number of proxies that a request can be forwarded
through ProxyPass [path] !|url sv E Maps remote servers into the local server
+ ProxyPass [path] !|url sv E
-Maps remote servers into the local server
URL-space ProxyPassReverse [path] url sv E Adjusts the URL in HTTP response headers sent from
+ ProxyPassReverse [path] url sv E
-Adjusts the URL in HTTP response headers sent from
a reverse proxied server ProxyPreserveHost on|off Off sv E Use incoming Host HTTP request header for
+ ProxyPreserveHost on|off Off sv E
-Use incoming Host HTTP request header for
proxy request ProxyReceiveBufferSize bytes sv E Network buffer size for outgoing HTTP and FTP
+ ProxyReceiveBufferSize bytes sv E
-Network buffer size for outgoing HTTP and FTP
connections ProxyRemote match remote-server sv E
-Remote proxy used to handle certain requests ProxyRemoteMatch regex remote-server sv E Remote proxy used to handle requests
+ ProxyRemote match remote-server sv E
+Remote proxy used to handle certain requests ProxyRemoteMatch regex remote-server sv E
-Remote proxy used to handle requests
matched by regular expressions ProxyRequests on|off Off sv E
-Enables forward (standard) proxy requests ProxyTimeout seconds 300 sv E
-Network timeout for proxied requests ProxyVia on|off|full|block off sv E Information provided in the Via
HTTP response
+ProxyRequests on|off Off sv E
+Enables forward (standard) proxy requests ProxyTimeout seconds 300 sv E
+Network timeout for proxied requests ProxyVia on|off|full|block off sv E
-Information provided in the Via
HTTP response
header for proxied requestsReadmeName filename svdh B Name of the file that will be inserted at the end
+ ReadmeName filename svdh B
-Name of the file that will be inserted at the end
of the index listing Redirect [status] URL-path
-URL svdh B Sends an external redirect asking the client to fetch
+ Redirect [status] URL-path
+URL svdh B
-Sends an external redirect asking the client to fetch
a different URL RedirectMatch [status] regex
-URL svdh B Sends an external redirect based on a regular expression match
+ RedirectMatch [status] regex
+URL svdh B
-Sends an external redirect based on a regular expression match
of the current URL RedirectPermanent URL-path URL svdh B Sends an external permanent redirect asking the client to fetch
+ RedirectPermanent URL-path URL svdh B
-Sends an external permanent redirect asking the client to fetch
a different URL RedirectTemp URL-path URL svdh B Sends an external temporary redirect asking the client to fetch
+ RedirectTemp URL-path URL svdh B
-Sends an external temporary redirect asking the client to fetch
a different URL RemoveCharset extension [extension]
-... vdh B Removes any character set associations for a set of file
+ RemoveCharset extension [extension]
+... vdh B
-Removes any character set associations for a set of file
extensions RemoveEncoding extension [extension]
-... vdh B Removes any content encoding associations for a set of file
+ RemoveEncoding extension [extension]
+... vdh B
-Removes any content encoding associations for a set of file
extensions RemoveHandler extension [extension]
-... vdh B Removes any handler associations for a set of file
+ RemoveHandler extension [extension]
+... vdh B
-Removes any handler associations for a set of file
extensions RemoveInputFilter extension [extension]
-... vdh B Removes any input filter associations for a set of file
+ RemoveInputFilter extension [extension]
+... vdh B
-Removes any input filter associations for a set of file
extensions RemoveLanguage extension [extension]
-... vdh B Removes any language associations for a set of file
+ RemoveLanguage extension [extension]
+... vdh B
-Removes any language associations for a set of file
extensions RemoveOutputFilter extension [extension]
-... vdh B Removes any output filter associations for a set of file
+ RemoveOutputFilter extension [extension]
+... vdh B
-Removes any output filter associations for a set of file
extensions RemoveType extension [extension]
-... vdh B Removes any content type associations for a set of file
+ RemoveType extension [extension]
+... vdh B
-Removes any content type associations for a set of file
extensions RequestHeader set|append|add|unset header
-[value] svdh E
-Configure HTTP request headers Require Name [Name] ... dh C Wählt die authentisierten Benutzer aus, die auf eine
+ RequestHeader set|append|add|unset header
+[value] svdh E
+Configure HTTP request headers Require Name [Name] ... dh C
-Wählt die authentisierten Benutzer aus, die auf eine
Ressource zugreifen können RewriteBase URL-path dh E
-Sets the base URL for per-directory rewrites RewriteCond
- TestString CondPattern svdh E Defines a condition under which rewriting will take place
+ RewriteBase URL-path dh E
+Sets the base URL for per-directory rewrites RewriteCond
+ TestString CondPattern svdh E
-Defines a condition under which rewriting will take place
RewriteEngine on|off off svdh E
-Enables or disables runtime rewriting engine RewriteLock file-path s E Sets the name of the lock file used for RewriteMap
+RewriteEngine on|off off svdh E
+Enables or disables runtime rewriting engine RewriteLock file-path s E
-Sets the name of the lock file used for RewriteMap
synchronizationRewriteLog file-path sv E Sets the name of the file used for logging rewrite engine
+ RewriteLog file-path sv E
-Sets the name of the file used for logging rewrite engine
processing RewriteLogLevel Level 0 sv E Sets the verbosity of the log file used by the rewrite
+ RewriteLogLevel Level 0 sv E
-Sets the verbosity of the log file used by the rewrite
engine RewriteMap MapName MapType:MapSource
- sv E
-Defines a mapping function for key-lookup RewriteOptions Options MaxRedirects=10 svdh E
-Sets some special options for the rewrite engine RewriteRule
- Pattern Substitution svdh E
-Defines rules for the rewriting engine RLimitCPU Sekunden|max [Sekunden|max] svdh C Begrenzt den CPU-Verbrauch von Prozessen, die von
+ RewriteMap MapName MapType:MapSource
+ sv E
+Defines a mapping function for key-lookup RewriteOptions Options MaxRedirects=10 svdh E
+Sets some special options for the rewrite engine RewriteRule
+ Pattern Substitution svdh E
+Defines rules for the rewriting engine RLimitCPU Sekunden|max [Sekunden|max] svdh C
-Begrenzt den CPU-Verbrauch von Prozessen, die von
Apache-Kindprozessen gestartet wurden RLimitMEM Bytes|max [Bytes|max] svdh C Begrenzt den Speicherverbrauch von Prozessen, die von
+ RLimitMEM Bytes|max [Bytes|max] svdh C
-Begrenzt den Speicherverbrauch von Prozessen, die von
Apache-Kindprozessen gestartet wurden RLimitNPROC Zahl|max [Zahl|max] svdh C Begrenzt die Anzahl der Prozesse, die von Prozessen gestartet
+ RLimitNPROC Zahl|max [Zahl|max] svdh C
-Begrenzt die Anzahl der Prozesse, die von Prozessen gestartet
werden können, der ihrerseits von Apache-Kinprozessen gestartet
wurden Satisfy Any|All All dh C Zusammenspiel von rechnerbasierter Zugriffskontrolle und
+ Satisfy Any|All All dh C
-Zusammenspiel von rechnerbasierter Zugriffskontrolle und
Benutzerauthentisierung ScoreBoardFile file-path logs/apache_status s M Location of the file used to store coordination data for
+ ScoreBoardFile file-path logs/apache_status s M
-Location of the file used to store coordination data for
the child processes Script method cgi-script svd B Activates a CGI script for a particular request
+ Script method cgi-script svd B
-Activates a CGI script for a particular request
method. ScriptAlias URL-path
-file-path|directory-path sv B Maps a URL to a filesystem location and designates the
+ ScriptAlias URL-path
+file-path|directory-path sv B
-Maps a URL to a filesystem location and designates the
target as a CGI script ScriptAliasMatch regex
-file-path|directory-path sv B Maps a URL to a filesystem location using a regular expression
+ ScriptAliasMatch regex
+file-path|directory-path sv B
-Maps a URL to a filesystem location using a regular expression
and designates the target as a CGI script ScriptInterpreterSource Registry|Registry-Strict|Script Script svdh C Methode zur Ermittlung des Interpreters von
+ ScriptInterpreterSource Registry|Registry-Strict|Script Script svdh C
-Methode zur Ermittlung des Interpreters von
CGI-Skripten ScriptLog file-path sv B
-Location of the CGI script error logfile ScriptLogBuffer bytes 1024 sv B Maximum amount of PUT or POST requests that will be recorded
+ ScriptLog file-path sv B
+Location of the CGI script error logfile ScriptLogBuffer bytes 1024 sv B
-Maximum amount of PUT or POST requests that will be recorded
in the scriptlog ScriptLogLength bytes 10385760 sv B
-Size limit of the CGI script logfile ScriptSock file-path logs/cgisock sv B The name of the socket to use for communication with
+ ScriptLogLength bytes 10385760 sv B
+Size limit of the CGI script logfile ScriptSock file-path logs/cgisock sv B
+The name of the socket to use for communication with
the cgi daemon SecureListen [IP-address:]portnumber Certificate-Name [MUTUAL] s B Enables SSL encryption for the specified port SendBufferSize bytes 0 s M TCP buffer size ServerAdmin E-Mail-Adresse sv C
diff --git a/docs/manual/mod/quickreference.html.en b/docs/manual/mod/quickreference.html.en
index 2a522570f7..c3c265b2aa 100644
--- a/docs/manual/mod/quickreference.html.en
+++ b/docs/manual/mod/quickreference.html.en
@@ -239,33 +239,33 @@ module
E-Mail-Adresse, die der Server in Fehlermeldungen einfügt,
welche an den Client gesendet werden ChildPerUserID user-id group-id
num-children s M
-Specify user ID and group ID for a number of child
processes CompressionLevelvalue sv E
-How much compression do we apply to the output ContentDigest On|Off Off svdh C Enables the generation of Content-MD5
HTTP Response
+ContentDigest On|Off Off svdh C
-Enables the generation of Content-MD5
HTTP Response
headersCookieDomain domain svdh E
-The domain to which the tracking cookie applies CookieExpires expiry-period svdh E
-Expiry time for the tracking cookie CookieLog filename sv B
-Sets filename for the logging of cookies CookieName token Apache svdh E
-Name of the tracking cookie CookieStyle
- Netscape|Cookie|Cookie2|RFC2109|RFC2965 Netscape svdh E
-Format of the cookie header field CookieTracking on|off off svdh E
-Enables tracking cookie CoreDumpDirectory directory s M Directory where Apache attempts to
+ CookieDomain domain svdh E
+The domain to which the tracking cookie applies CookieExpires expiry-period svdh E
+Expiry time for the tracking cookie CookieLog filename sv B
+Sets filename for the logging of cookies CookieName token Apache svdh E
+Name of the tracking cookie CookieStyle
+ Netscape|Cookie|Cookie2|RFC2109|RFC2965 Netscape svdh E
+Format of the cookie header field CookieTracking on|off off svdh E
+Enables tracking cookie CoreDumpDirectory directory s M
-Directory where Apache attempts to
switch before dumping core CustomLog file|pipe
+ CustomLog file|pipe
format|nickname
-[env=[!]environment-variable] sv B
-Sets filename and format of log file Dav On|Off|provider-name Off d E
-Enable WebDAV HTTP methods DavDepthInfinity on|off off svd E
-Allow PROPFIND, Depth: Infinity requests DavLockDB file-path sv E
-Location of the DAV lock database DavMinTimeout seconds 0 svd E Minimum amount of time the server holds a lock on
+[env=[!]environment-variable] sv B
+Sets filename and format of log file Dav On|Off|provider-name Off d E
+Enable WebDAV HTTP methods DavDepthInfinity on|off off svd E
+Allow PROPFIND, Depth: Infinity requests DavLockDB file-path sv E
+Location of the DAV lock database DavMinTimeout seconds 0 svd E
-Minimum amount of time the server holds a lock on
a DAV resource DefaultIcon url-path svdh B Icon to display for files when no specific icon is
+ DefaultIcon url-path svdh B
-Icon to display for files when no specific icon is
configured DefaultLanguage MIME-lang svdh B Sets all files in the given scope to the specified
+ DefaultLanguage MIME-lang svdh B
-Sets all files in the given scope to the specified
language DefaultType MIME-type text/plain svdh C MIME content-type that will be sent if the
+ DefaultType MIME-type text/plain svdh C
-MIME content-type that will be sent if the
server cannot determine a type in any other way DeflateBufferSize value 8096 sv E
+Fragment size to be compressed at one time by zlib DeflateBufferSize value 8096 sv E
+Fragment size to be compressed at one time by zlib DeflateCompressionLevelvalue sv E How much compression do we apply to the output DeflateFilterNote [type] notename sv E Places the compression ratio in a note for logging DeflateMemLevel value 9 sv E How much memory should be used by zlib for compression DeflateWindowSize value 15 sv E
@@ -445,124 +445,126 @@ hostingZlib compression window size NoProxy host [host] ... sv E Hosts, domains, or networks that will be connected
to directly NumServers number 2 s M
-Total number of children alive at the same time Options
- [+|-]option [[+|-]option] ... All svdh C Configures what features are available in a particular
+ NWSSLTrustedCerts filename[filename]... s B
+List of additional client certificates Options
+ [+|-]option [[+|-]option] ... All svdh C
-Configures what features are available in a particular
directory Order ordering Deny,Allow dh B Controls the default access state and the order in which
+ Order ordering Deny,Allow dh B
-Controls the default access state and the order in which
Allow
and Deny
are
evaluated.PassEnv env-variable [env-variable]
-... svdh B
-Passes environment variables from the shell PidFile filename logs/httpd.pid s M File where the server records the process ID
+ PassEnv env-variable [env-variable]
+... svdh B
+Passes environment variables from the shell PidFile filename logs/httpd.pid s M
-File where the server records the process ID
of the daemon ProtocolEcho On|Off sv X
-Turn the echo server on or off <Proxy wildcard-url> ...</Proxy> sv E Container for directives applied to proxied
+ ProtocolEcho On|Off sv X
+Turn the echo server on or off <Proxy wildcard-url> ...</Proxy> sv E
-Container for directives applied to proxied
resources ProxyBlock *|word|host|domain
-[word|host|domain] ... sv E Words, hosts, or domains that are banned from being
+ ProxyBlock *|word|host|domain
+[word|host|domain] ... sv E
-Words, hosts, or domains that are banned from being
proxied ProxyDomain Domain sv E
-Default domain name for proxied requests ProxyErrorOverride On|Off Off sv E
-Override error pages for proxied content ProxyIOBufferSize bytes sv E IO buffer size for outgoing HTTP and FTP
+ ProxyDomain Domain sv E
+Default domain name for proxied requests ProxyErrorOverride On|Off Off sv E
+Override error pages for proxied content ProxyIOBufferSize bytes sv E
-IO buffer size for outgoing HTTP and FTP
connections <ProxyMatch regex> ...</ProxyMatch> sv E Container for directives applied to regular-expression-matched
+ <ProxyMatch regex> ...</ProxyMatch> sv E
-Container for directives applied to regular-expression-matched
proxied resources ProxyMaxForwards number 10 sv E Maximium number of proxies that a request can be forwarded
+ ProxyMaxForwards number 10 sv E
-Maximium number of proxies that a request can be forwarded
through ProxyPass [path] !|url sv E Maps remote servers into the local server
+ ProxyPass [path] !|url sv E
-Maps remote servers into the local server
URL-space ProxyPassReverse [path] url sv E Adjusts the URL in HTTP response headers sent from
+ ProxyPassReverse [path] url sv E
-Adjusts the URL in HTTP response headers sent from
a reverse proxied server ProxyPreserveHost on|off Off sv E Use incoming Host HTTP request header for
+ ProxyPreserveHost on|off Off sv E
-Use incoming Host HTTP request header for
proxy request ProxyReceiveBufferSize bytes sv E Network buffer size for outgoing HTTP and FTP
+ ProxyReceiveBufferSize bytes sv E
-Network buffer size for outgoing HTTP and FTP
connections ProxyRemote match remote-server sv E
-Remote proxy used to handle certain requests ProxyRemoteMatch regex remote-server sv E Remote proxy used to handle requests
+ ProxyRemote match remote-server sv E
+Remote proxy used to handle certain requests ProxyRemoteMatch regex remote-server sv E
-Remote proxy used to handle requests
matched by regular expressions ProxyRequests on|off Off sv E
-Enables forward (standard) proxy requests ProxyTimeout seconds 300 sv E
-Network timeout for proxied requests ProxyVia on|off|full|block off sv E Information provided in the Via
HTTP response
+ProxyRequests on|off Off sv E
+Enables forward (standard) proxy requests ProxyTimeout seconds 300 sv E
+Network timeout for proxied requests ProxyVia on|off|full|block off sv E
-Information provided in the Via
HTTP response
header for proxied requestsReadmeName filename svdh B Name of the file that will be inserted at the end
+ ReadmeName filename svdh B
-Name of the file that will be inserted at the end
of the index listing Redirect [status] URL-path
-URL svdh B Sends an external redirect asking the client to fetch
+ Redirect [status] URL-path
+URL svdh B
-Sends an external redirect asking the client to fetch
a different URL RedirectMatch [status] regex
-URL svdh B Sends an external redirect based on a regular expression match
+ RedirectMatch [status] regex
+URL svdh B
-Sends an external redirect based on a regular expression match
of the current URL RedirectPermanent URL-path URL svdh B Sends an external permanent redirect asking the client to fetch
+ RedirectPermanent URL-path URL svdh B
-Sends an external permanent redirect asking the client to fetch
a different URL RedirectTemp URL-path URL svdh B Sends an external temporary redirect asking the client to fetch
+ RedirectTemp URL-path URL svdh B
-Sends an external temporary redirect asking the client to fetch
a different URL RemoveCharset extension [extension]
-... vdh B Removes any character set associations for a set of file
+ RemoveCharset extension [extension]
+... vdh B
-Removes any character set associations for a set of file
extensions RemoveEncoding extension [extension]
-... vdh B Removes any content encoding associations for a set of file
+ RemoveEncoding extension [extension]
+... vdh B
-Removes any content encoding associations for a set of file
extensions RemoveHandler extension [extension]
-... vdh B Removes any handler associations for a set of file
+ RemoveHandler extension [extension]
+... vdh B
-Removes any handler associations for a set of file
extensions RemoveInputFilter extension [extension]
-... vdh B Removes any input filter associations for a set of file
+ RemoveInputFilter extension [extension]
+... vdh B
-Removes any input filter associations for a set of file
extensions RemoveLanguage extension [extension]
-... vdh B Removes any language associations for a set of file
+ RemoveLanguage extension [extension]
+... vdh B
-Removes any language associations for a set of file
extensions RemoveOutputFilter extension [extension]
-... vdh B Removes any output filter associations for a set of file
+ RemoveOutputFilter extension [extension]
+... vdh B
-Removes any output filter associations for a set of file
extensions RemoveType extension [extension]
-... vdh B Removes any content type associations for a set of file
+ RemoveType extension [extension]
+... vdh B
-Removes any content type associations for a set of file
extensions RequestHeader set|append|add|unset header
-[value] svdh E
-Configure HTTP request headers Require entity-name [entity-name] ... dh C Selects which authenticated users can access
+ RequestHeader set|append|add|unset header
+[value] svdh E
+Configure HTTP request headers Require entity-name [entity-name] ... dh C
-Selects which authenticated users can access
a resource RewriteBase URL-path dh E
-Sets the base URL for per-directory rewrites RewriteCond
- TestString CondPattern svdh E Defines a condition under which rewriting will take place
+ RewriteBase URL-path dh E
+Sets the base URL for per-directory rewrites RewriteCond
+ TestString CondPattern svdh E
-Defines a condition under which rewriting will take place
RewriteEngine on|off off svdh E
-Enables or disables runtime rewriting engine RewriteLock file-path s E Sets the name of the lock file used for RewriteMap
+RewriteEngine on|off off svdh E
+Enables or disables runtime rewriting engine RewriteLock file-path s E
-Sets the name of the lock file used for RewriteMap
synchronizationRewriteLog file-path sv E Sets the name of the file used for logging rewrite engine
+ RewriteLog file-path sv E
-Sets the name of the file used for logging rewrite engine
processing RewriteLogLevel Level 0 sv E Sets the verbosity of the log file used by the rewrite
+ RewriteLogLevel Level 0 sv E
-Sets the verbosity of the log file used by the rewrite
engine RewriteMap MapName MapType:MapSource
- sv E
-Defines a mapping function for key-lookup RewriteOptions Options MaxRedirects=10 svdh E
-Sets some special options for the rewrite engine RewriteRule
- Pattern Substitution svdh E
-Defines rules for the rewriting engine RLimitCPU seconds|max [seconds|max] svdh C Limits the CPU consumption of processes launched
+ RewriteMap MapName MapType:MapSource
+ sv E
+Defines a mapping function for key-lookup RewriteOptions Options MaxRedirects=10 svdh E
+Sets some special options for the rewrite engine RewriteRule
+ Pattern Substitution svdh E
+Defines rules for the rewriting engine RLimitCPU seconds|max [seconds|max] svdh C
-Limits the CPU consumption of processes launched
by Apache children RLimitMEM bytes|max [bytes|max] svdh C Limits the memory consumption of processes launched
+ RLimitMEM bytes|max [bytes|max] svdh C
-Limits the memory consumption of processes launched
by Apache children RLimitNPROC number|max [number|max] svdh C Limits the number of processes that can be launched by
+ RLimitNPROC number|max [number|max] svdh C
-Limits the number of processes that can be launched by
processes launched by Apache children Satisfy Any|All All dh C Interaction between host-level access control and
+ Satisfy Any|All All dh C
-Interaction between host-level access control and
user authentication ScoreBoardFile file-path logs/apache_status s M Location of the file used to store coordination data for
+ ScoreBoardFile file-path logs/apache_status s M
-Location of the file used to store coordination data for
the child processes Script method cgi-script svd B Activates a CGI script for a particular request
+ Script method cgi-script svd B
-Activates a CGI script for a particular request
method. ScriptAlias URL-path
-file-path|directory-path sv B Maps a URL to a filesystem location and designates the
+ ScriptAlias URL-path
+file-path|directory-path sv B
-Maps a URL to a filesystem location and designates the
target as a CGI script ScriptAliasMatch regex
-file-path|directory-path sv B Maps a URL to a filesystem location using a regular expression
+ ScriptAliasMatch regex
+file-path|directory-path sv B
-Maps a URL to a filesystem location using a regular expression
and designates the target as a CGI script ScriptInterpreterSource Registry|Registry-Strict|Script Script svdh C Technique for locating the interpreter for CGI
+ ScriptInterpreterSource Registry|Registry-Strict|Script Script svdh C
-Technique for locating the interpreter for CGI
scripts ScriptLog file-path sv B
-Location of the CGI script error logfile ScriptLogBuffer bytes 1024 sv B Maximum amount of PUT or POST requests that will be recorded
+ ScriptLog file-path sv B
+Location of the CGI script error logfile ScriptLogBuffer bytes 1024 sv B
-Maximum amount of PUT or POST requests that will be recorded
in the scriptlog ScriptLogLength bytes 10385760 sv B
-Size limit of the CGI script logfile ScriptSock file-path logs/cgisock sv B The name of the socket to use for communication with
+ ScriptLogLength bytes 10385760 sv B
+Size limit of the CGI script logfile ScriptSock file-path logs/cgisock sv B
+The name of the socket to use for communication with
the cgi daemon SecureListen [IP-address:]portnumber Certificate-Name [MUTUAL] s B Enables SSL encryption for the specified port SendBufferSize bytes 0 s M TCP buffer size ServerAdmin email-address sv C
diff --git a/docs/manual/platform/netware.html.en b/docs/manual/platform/netware.html.en
index 8acf04bf4f..cb207b51e1 100644
--- a/docs/manual/platform/netware.html.en
+++ b/docs/manual/platform/netware.html.en
@@ -375,6 +375,14 @@
Email address that the server includes in error
messages sent to the client CGIMapExtension
-
This directive maps a CGI file extension to a script interpreter.
+
+ SecureListen
-
+ Enables SSL encryption for a specified port.
+
diff --git a/docs/manual/sitemap.html.de b/docs/manual/sitemap.html.de
index 715260c10c..c6cf9aff1d 100644
--- a/docs/manual/sitemap.html.de
+++ b/docs/manual/sitemap.html.de
@@ -193,6 +193,7 @@ HPUX betreiben
NWSSLTrustedCerts
-
+ Adds trusted certificates that are used to create secure connections to proxied servers.