From: Graham Leggett Date: Tue, 4 Aug 2026 18:46:58 +0000 (+0000) Subject: Rebuild docs. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7a27d5456007fae9f5fcd9548faa69f7ece9b4b;p=thirdparty%2Fapache%2Fhttpd.git Rebuild docs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1936881 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/logs.html.en.utf8 b/docs/manual/logs.html.en.utf8 index 9a2f833450..f07e90f89b 100644 --- a/docs/manual/logs.html.en.utf8 +++ b/docs/manual/logs.html.en.utf8 @@ -173,8 +173,8 @@

Do this by specifying the name of the module in your LogLevel directive:

-
LogLevel info rewrite:trace5
- +
LogLevel info rewrite:trace5
+

This sets the main LogLevel to info, but turns it up to trace5 for @@ -223,9 +223,9 @@

A typical configuration for the access log might look as follows.

-
LogFormat "%h %l %u %t \"%r\" %>s %b" common
+
LogFormat "%h %l %u %t \"%r\" %>s %b" common
 CustomLog "logs/access_log" common
- +

This defines the nickname common and associates it with a particular log format string. The format @@ -363,9 +363,9 @@ CustomLog "logs/access_log" common

Another commonly used format string is called the Combined Log Format. It can be used as follows.

-
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" combined
+
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" combined
 CustomLog "log/access_log" combined
- +

This format is exactly the same as the Common Log Format, with the addition of two more fields. Each of the additional @@ -413,11 +413,11 @@ CustomLog "log/access_log" combined

information. The last two CustomLog lines show how to mimic the effects of the ReferLog and AgentLog directives.

-
LogFormat "%h %l %u %t \"%r\" %>s %b" common
+
LogFormat "%h %l %u %t \"%r\" %>s %b" common
 CustomLog "logs/access_log" common
 CustomLog "logs/referer_log" "%{Referer}i -> %U"
 CustomLog "logs/agent_log" "%{User-agent}i"
- +

This example also shows that it is not necessary to define a nickname with the LogFormat directive. Instead, @@ -437,31 +437,31 @@ CustomLog "logs/agent_log" "%{User-agent}i"

include or exclude requests where the environment variable is set. Some examples:

-
# Mark requests from the loop-back interface
+
# Mark requests from the loop-back interface
 SetEnvIf Remote_Addr "127\.0\.0\.1" dontlog
 # Mark requests for the robots.txt file
 SetEnvIf Request_URI "^/robots\.txt$" dontlog
 # Log what remains
 CustomLog "logs/access_log" common env=!dontlog
- +

As another example, consider logging requests from english-speakers to one log file, and non-english speakers to a different log file.

-
SetEnvIf Accept-Language "en" english
+
SetEnvIf Accept-Language "en" english
 CustomLog "logs/english_log" common env=english
 CustomLog "logs/non_english_log" common env=!english
- +

In a caching scenario one would want to know about the efficiency of the cache. A very simple method to find this out would be:

-
SetEnv CACHE_MISS 1
+
SetEnv CACHE_MISS 1
 LogFormat "%h %l %u %t "%r " %>s %b %{CACHE_MISS}e" common-cache
 CustomLog "logs/access_log" common-cache
- +

mod_cache will run before mod_env and, when successful, will deliver the @@ -471,9 +471,9 @@ CustomLog "logs/access_log" common-cache

In addition to the env= syntax, LogFormat supports logging values conditional upon the HTTP response code:

-
LogFormat "%400,501{User-agent}i" browserlog
+
LogFormat "%400,501{User-agent}i" browserlog
 LogFormat "%!200,304,302{Referer}i" refererlog
- +

In the first example, the User-agent will be logged if the HTTP status code is 400 or 501. In other cases, a @@ -494,91 +494,99 @@ LogFormat "%!200,304,302{Referer}i" refererlog

Log Rotation

-

On even a moderately busy server, the quantity of - information stored in the log files is very large. The access - log file typically grows 1 MB or more per 10,000 requests. It - will consequently be necessary to periodically rotate the log - files by moving or deleting the existing logs. This cannot be - done while the server is running, because Apache httpd will continue - writing to the old log file as long as it holds the file open. - Instead, the server must be restarted after the log files are - moved or deleted so that it will open new log files.

- -

By using a graceful restart, the server can be - instructed to open new log files without losing any existing or - pending connections from clients. However, in order to - accomplish this, the server must continue to write to the old - log files while it finishes serving old requests. It is - therefore necessary to wait for some time after the restart - before doing any processing on the log files. A typical - scenario that simply rotates the logs and compresses the old - logs to save space is:

+

On even a moderately busy server, log files grow quickly — + the access log typically grows 1 MB or more per 10,000 requests. + Without rotation, logs consume disk space indefinitely and become + unwieldy to analyze. You should set up automatic log rotation from + the start.

-

- mv access_log access_log.old
- mv error_log error_log.old
- apachectl graceful
- sleep 600
- gzip access_log.old error_log.old -

+

Using rotatelogs (recommended)

+ + +

The simplest approach is to use httpd's built-in + rotatelogs program via piped + logs. This rotates logs without requiring a server restart + and without any external tools. To rotate logs every 24 hours:

+ +
CustomLog "|/usr/local/apache/bin/rotatelogs /var/log/httpd/access_log 86400" combined
+ErrorLog  "|/usr/local/apache/bin/rotatelogs /var/log/httpd/error_log 86400"
+
+ +

To rotate when the log reaches a certain size (e.g., 100 MB):

+ +
CustomLog "|/usr/local/apache/bin/rotatelogs /var/log/httpd/access_log 100M" combined
+
+ +

You can also use a time-based filename pattern with + strftime format strings:

+ +
CustomLog "|/usr/local/apache/bin/rotatelogs /var/log/httpd/access_log.%Y-%m-%d 86400" combined
+
+ +

See rotatelogs for the full set of options, + including offset times, file count limits, and compression.

+ + +

Using logrotate or system log management

+ + +

Most Linux distributions include logrotate, which + can rotate, compress, and expire log files on a schedule. If your + distribution already ships an httpd logrotate configuration (check + /etc/logrotate.d/), it may already be handling rotation + for you.

+ +

When using an external rotation tool like logrotate, + you need to signal httpd to reopen its log files after + the old ones are moved aside. The standard approach is a + graceful restart:

+ +
/usr/sbin/apachectl graceful
+
-

Another way to perform log rotation is using piped logs as discussed in the next - section.

+

Your logrotate configuration's postrotate script + should include this (or the equivalent + systemctl reload command). httpd continues writing to + the old file handle until it receives the signal, so any post-processing + of rotated files should allow a brief delay.

+ +
top

Piped Logs

-

Apache httpd is capable of writing error and access log - files through a pipe to another process, rather than directly - to a file. This capability dramatically increases the - flexibility of logging, without adding code to the main server. - In order to write logs to a pipe, simply replace the filename - with the pipe character "|", followed by the name - of the executable which should accept log entries on its - standard input. The server will start the piped-log process when - the server starts, and will restart it if it crashes while the - server is running. (This last feature is why we can refer to - this technique as "reliable piped logging".)

- -

Piped log processes are spawned by the parent Apache httpd - process, and inherit the userid of that process. This means - that piped log programs usually run as root. It is therefore - very important to keep the programs simple and secure.

- -

One important use of piped logs is to allow log rotation - without having to restart the server. The Apache HTTP Server - includes a simple program called rotatelogs - for this purpose. For example, to rotate the logs every 24 hours, you - can use:

- -
CustomLog "|/usr/local/apache/bin/rotatelogs /var/log/access_log 86400" common
- - -

Notice that quotes are used to enclose the entire command - that will be called for the pipe. Although these examples are - for the access log, the same technique can be used for the - error log.

- -

As with conditional logging, piped logs are a very powerful - tool, but they should not be used where a simpler solution like - off-line post-processing is available.

- -

By default the piped log process is spawned without invoking - a shell. Use "|$" instead of "|" - to spawn using a shell (usually with /bin/sh -c):

- -
# Invoke "rotatelogs" using a shell
-CustomLog "|$/usr/local/apache/bin/rotatelogs   /var/log/access_log 86400" common
- - -

This was the default behavior for Apache 2.2. - Depending on the shell specifics this might lead to - an additional shell process for the lifetime of the logging - pipe program and signal handling problems during restart. - For compatibility reasons with Apache 2.2 the notation - "||" is also supported and equivalent to using - "|".

+

httpd can write error and access log files through a pipe to + another process, rather than directly to a file. To use a piped + log, replace the filename with the pipe character + "|", followed by the command that should receive + log entries on its standard input:

+ +
CustomLog "|/usr/local/apache/bin/rotatelogs /var/log/httpd/access_log 86400" combined
+
+ +

httpd starts the piped-log process at server startup and + restarts it automatically if it crashes (this is sometimes called + "reliable piped logging"). The quotes enclose the entire piped + command — this syntax works for both + CustomLog and + ErrorLog.

+ +

Piped log processes are spawned by the parent httpd process and + inherit its userid. This typically means they run as root, so keep + piped log programs simple and secure.

+ +

By default the piped log process is spawned directly, without + invoking a shell. Use "|$" instead of + "|" to spawn via a shell (usually + /bin/sh -c):

+ +
CustomLog "|$/usr/local/apache/bin/rotatelogs /var/log/httpd/access_log 86400" combined
+
+ +

The shell variant is occasionally needed if your piped command + uses shell features like globbing or variable expansion. For most + cases, the direct (non-shell) invocation is preferred.

Windows note

Note that on Windows, you may run into problems when running many piped @@ -625,9 +633,9 @@ CustomLog "|$/usr/local/apache/bin/rotatelogs /var/log/access_log 86400" commo later split the log into individual files. For example, consider the following directives.

-
LogFormat "%v %p %h %l %u %t \"%r\" %>s %b" commonvhost
+
LogFormat "%v %p %h %l %u %t \"%r\" %>s %b" commonvhost
 CustomLog "logs/access_log" commonvhost
- +

The %v is used to log the name of the virtual host that is serving the request. Then a program like split-logfile can be used to diff --git a/docs/manual/mod/directives.html.de b/docs/manual/mod/directives.html.de index c176599341..7e18f5cc03 100644 --- a/docs/manual/mod/directives.html.de +++ b/docs/manual/mod/directives.html.de @@ -496,6 +496,7 @@

  • MDDriveMode
  • MDExternalAccountBinding
  • MDHttpProxy
  • +
  • MDHttpProxyCACertificateFile
  • MDInitialDelay
  • MDMatchNames
  • MDMember
  • @@ -745,14 +746,18 @@
  • SSIUndefinedEcho
  • SSLCACertificateFile
  • SSLCACertificatePath
  • +
  • SSLCACertificateURI
  • SSLCADNRequestFile
  • SSLCADNRequestPath
  • +
  • SSLCADNRequestURI
  • SSLCARevocationCheck
  • SSLCARevocationFile
  • SSLCARevocationPath
  • +
  • SSLCARevocationURI
  • SSLCertificateChainFile
  • SSLCertificateFile
  • SSLCertificateKeyFile
  • +
  • SSLCertificateURI
  • SSLCipherSuite
  • SSLClientHelloVars
  • SSLCompression
  • @@ -778,9 +783,11 @@
  • SSLProtocol
  • SSLProxyCACertificateFile
  • SSLProxyCACertificatePath
  • +
  • SSLProxyCACertificateURI
  • SSLProxyCARevocationCheck
  • SSLProxyCARevocationFile
  • SSLProxyCARevocationPath
  • +
  • SSLProxyCARevocationURI
  • SSLProxyCheckPeerCN
  • SSLProxyCheckPeerExpire
  • SSLProxyCheckPeerName
  • @@ -789,6 +796,7 @@
  • SSLProxyMachineCertificateChainFile
  • SSLProxyMachineCertificateFile
  • SSLProxyMachineCertificatePath
  • +
  • SSLProxyMachineCertificateURI
  • SSLProxyProtocol
  • SSLProxyVerify
  • SSLProxyVerifyDepth
  • diff --git a/docs/manual/mod/directives.html.en.utf8 b/docs/manual/mod/directives.html.en.utf8 index f143a0753a..5ac4b190a3 100644 --- a/docs/manual/mod/directives.html.en.utf8 +++ b/docs/manual/mod/directives.html.en.utf8 @@ -497,6 +497,7 @@
  • MDDriveMode
  • MDExternalAccountBinding
  • MDHttpProxy
  • +
  • MDHttpProxyCACertificateFile
  • MDInitialDelay
  • MDMatchNames
  • MDMember
  • @@ -746,14 +747,18 @@
  • SSIUndefinedEcho
  • SSLCACertificateFile
  • SSLCACertificatePath
  • +
  • SSLCACertificateURI
  • SSLCADNRequestFile
  • SSLCADNRequestPath
  • +
  • SSLCADNRequestURI
  • SSLCARevocationCheck
  • SSLCARevocationFile
  • SSLCARevocationPath
  • +
  • SSLCARevocationURI
  • SSLCertificateChainFile
  • SSLCertificateFile
  • SSLCertificateKeyFile
  • +
  • SSLCertificateURI
  • SSLCipherSuite
  • SSLClientHelloVars
  • SSLCompression
  • @@ -779,9 +784,11 @@
  • SSLProtocol
  • SSLProxyCACertificateFile
  • SSLProxyCACertificatePath
  • +
  • SSLProxyCACertificateURI
  • SSLProxyCARevocationCheck
  • SSLProxyCARevocationFile
  • SSLProxyCARevocationPath
  • +
  • SSLProxyCARevocationURI
  • SSLProxyCheckPeerCN
  • SSLProxyCheckPeerExpire
  • SSLProxyCheckPeerName
  • @@ -790,6 +797,7 @@
  • SSLProxyMachineCertificateChainFile
  • SSLProxyMachineCertificateFile
  • SSLProxyMachineCertificatePath
  • +
  • SSLProxyMachineCertificateURI
  • SSLProxyProtocol
  • SSLProxyVerify
  • SSLProxyVerifyDepth
  • diff --git a/docs/manual/mod/directives.html.es.utf8 b/docs/manual/mod/directives.html.es.utf8 index 619778da34..9116154542 100644 --- a/docs/manual/mod/directives.html.es.utf8 +++ b/docs/manual/mod/directives.html.es.utf8 @@ -499,6 +499,7 @@
  • MDDriveMode
  • MDExternalAccountBinding
  • MDHttpProxy
  • +
  • MDHttpProxyCACertificateFile
  • MDInitialDelay
  • MDMatchNames
  • MDMember
  • @@ -748,14 +749,18 @@
  • SSIUndefinedEcho
  • SSLCACertificateFile
  • SSLCACertificatePath
  • +
  • SSLCACertificateURI
  • SSLCADNRequestFile
  • SSLCADNRequestPath
  • +
  • SSLCADNRequestURI
  • SSLCARevocationCheck
  • SSLCARevocationFile
  • SSLCARevocationPath
  • +
  • SSLCARevocationURI
  • SSLCertificateChainFile
  • SSLCertificateFile
  • SSLCertificateKeyFile
  • +
  • SSLCertificateURI
  • SSLCipherSuite
  • SSLClientHelloVars
  • SSLCompression
  • @@ -781,9 +786,11 @@
  • SSLProtocol
  • SSLProxyCACertificateFile
  • SSLProxyCACertificatePath
  • +
  • SSLProxyCACertificateURI
  • SSLProxyCARevocationCheck
  • SSLProxyCARevocationFile
  • SSLProxyCARevocationPath
  • +
  • SSLProxyCARevocationURI
  • SSLProxyCheckPeerCN
  • SSLProxyCheckPeerExpire
  • SSLProxyCheckPeerName
  • @@ -792,6 +799,7 @@
  • SSLProxyMachineCertificateChainFile
  • SSLProxyMachineCertificateFile
  • SSLProxyMachineCertificatePath
  • +
  • SSLProxyMachineCertificateURI
  • SSLProxyProtocol
  • SSLProxyVerify
  • SSLProxyVerifyDepth
  • diff --git a/docs/manual/mod/directives.html.fr.utf8 b/docs/manual/mod/directives.html.fr.utf8 index 93857fa4a7..f23cc42d1a 100644 --- a/docs/manual/mod/directives.html.fr.utf8 +++ b/docs/manual/mod/directives.html.fr.utf8 @@ -748,14 +748,18 @@
  • SSIUndefinedEcho
  • SSLCACertificateFile
  • SSLCACertificatePath
  • +
  • SSLCACertificateURI
  • SSLCADNRequestFile
  • SSLCADNRequestPath
  • +
  • SSLCADNRequestURI
  • SSLCARevocationCheck
  • SSLCARevocationFile
  • SSLCARevocationPath
  • +
  • SSLCARevocationURI
  • SSLCertificateChainFile
  • SSLCertificateFile
  • SSLCertificateKeyFile
  • +
  • SSLCertificateURI
  • SSLCipherSuite
  • SSLClientHelloVars
  • SSLCompression
  • @@ -781,9 +785,11 @@
  • SSLProtocol
  • SSLProxyCACertificateFile
  • SSLProxyCACertificatePath
  • +
  • SSLProxyCACertificateURI
  • SSLProxyCARevocationCheck
  • SSLProxyCARevocationFile
  • SSLProxyCARevocationPath
  • +
  • SSLProxyCARevocationURI
  • SSLProxyCheckPeerCN
  • SSLProxyCheckPeerExpire
  • SSLProxyCheckPeerName
  • @@ -792,6 +798,7 @@
  • SSLProxyMachineCertificateChainFile
  • SSLProxyMachineCertificateFile
  • SSLProxyMachineCertificatePath
  • +
  • SSLProxyMachineCertificateURI
  • SSLProxyProtocol
  • SSLProxyVerify
  • SSLProxyVerifyDepth
  • diff --git a/docs/manual/mod/directives.html.ja.utf8 b/docs/manual/mod/directives.html.ja.utf8 index 1e19ad60ea..6ea80fd9ca 100644 --- a/docs/manual/mod/directives.html.ja.utf8 +++ b/docs/manual/mod/directives.html.ja.utf8 @@ -494,6 +494,7 @@
  • MDDriveMode
  • MDExternalAccountBinding
  • MDHttpProxy
  • +
  • MDHttpProxyCACertificateFile
  • MDInitialDelay
  • MDMatchNames
  • MDMember
  • @@ -743,14 +744,18 @@
  • SSIUndefinedEcho
  • SSLCACertificateFile
  • SSLCACertificatePath
  • +
  • SSLCACertificateURI
  • SSLCADNRequestFile
  • SSLCADNRequestPath
  • +
  • SSLCADNRequestURI
  • SSLCARevocationCheck
  • SSLCARevocationFile
  • SSLCARevocationPath
  • +
  • SSLCARevocationURI
  • SSLCertificateChainFile
  • SSLCertificateFile
  • SSLCertificateKeyFile
  • +
  • SSLCertificateURI
  • SSLCipherSuite
  • SSLClientHelloVars
  • SSLCompression
  • @@ -776,9 +781,11 @@
  • SSLProtocol
  • SSLProxyCACertificateFile
  • SSLProxyCACertificatePath
  • +
  • SSLProxyCACertificateURI
  • SSLProxyCARevocationCheck
  • SSLProxyCARevocationFile
  • SSLProxyCARevocationPath
  • +
  • SSLProxyCARevocationURI
  • SSLProxyCheckPeerCN
  • SSLProxyCheckPeerExpire
  • SSLProxyCheckPeerName
  • @@ -787,6 +794,7 @@
  • SSLProxyMachineCertificateChainFile
  • SSLProxyMachineCertificateFile
  • SSLProxyMachineCertificatePath
  • +
  • SSLProxyMachineCertificateURI
  • SSLProxyProtocol
  • SSLProxyVerify
  • SSLProxyVerifyDepth
  • diff --git a/docs/manual/mod/directives.html.ko.euc-kr b/docs/manual/mod/directives.html.ko.euc-kr index 8c74369c5d..9583d83446 100644 --- a/docs/manual/mod/directives.html.ko.euc-kr +++ b/docs/manual/mod/directives.html.ko.euc-kr @@ -494,6 +494,7 @@
  • MDDriveMode
  • MDExternalAccountBinding
  • MDHttpProxy
  • +
  • MDHttpProxyCACertificateFile
  • MDInitialDelay
  • MDMatchNames
  • MDMember
  • @@ -743,14 +744,18 @@
  • SSIUndefinedEcho
  • SSLCACertificateFile
  • SSLCACertificatePath
  • +
  • SSLCACertificateURI
  • SSLCADNRequestFile
  • SSLCADNRequestPath
  • +
  • SSLCADNRequestURI
  • SSLCARevocationCheck
  • SSLCARevocationFile
  • SSLCARevocationPath
  • +
  • SSLCARevocationURI
  • SSLCertificateChainFile
  • SSLCertificateFile
  • SSLCertificateKeyFile
  • +
  • SSLCertificateURI
  • SSLCipherSuite
  • SSLClientHelloVars
  • SSLCompression
  • @@ -776,9 +781,11 @@
  • SSLProtocol
  • SSLProxyCACertificateFile
  • SSLProxyCACertificatePath
  • +
  • SSLProxyCACertificateURI
  • SSLProxyCARevocationCheck
  • SSLProxyCARevocationFile
  • SSLProxyCARevocationPath
  • +
  • SSLProxyCARevocationURI
  • SSLProxyCheckPeerCN
  • SSLProxyCheckPeerExpire
  • SSLProxyCheckPeerName
  • @@ -787,6 +794,7 @@
  • SSLProxyMachineCertificateChainFile
  • SSLProxyMachineCertificateFile
  • SSLProxyMachineCertificatePath
  • +
  • SSLProxyMachineCertificateURI
  • SSLProxyProtocol
  • SSLProxyVerify
  • SSLProxyVerifyDepth
  • diff --git a/docs/manual/mod/directives.html.tr.utf8 b/docs/manual/mod/directives.html.tr.utf8 index 8a57b216e7..673b50b697 100644 --- a/docs/manual/mod/directives.html.tr.utf8 +++ b/docs/manual/mod/directives.html.tr.utf8 @@ -493,6 +493,7 @@
  • MDDriveMode
  • MDExternalAccountBinding
  • MDHttpProxy
  • +
  • MDHttpProxyCACertificateFile
  • MDInitialDelay
  • MDMatchNames
  • MDMember
  • @@ -742,14 +743,18 @@
  • SSIUndefinedEcho
  • SSLCACertificateFile
  • SSLCACertificatePath
  • +
  • SSLCACertificateURI
  • SSLCADNRequestFile
  • SSLCADNRequestPath
  • +
  • SSLCADNRequestURI
  • SSLCARevocationCheck
  • SSLCARevocationFile
  • SSLCARevocationPath
  • +
  • SSLCARevocationURI
  • SSLCertificateChainFile
  • SSLCertificateFile
  • SSLCertificateKeyFile
  • +
  • SSLCertificateURI
  • SSLCipherSuite
  • SSLClientHelloVars
  • SSLCompression
  • @@ -775,9 +780,11 @@
  • SSLProtocol
  • SSLProxyCACertificateFile
  • SSLProxyCACertificatePath
  • +
  • SSLProxyCACertificateURI
  • SSLProxyCARevocationCheck
  • SSLProxyCARevocationFile
  • SSLProxyCARevocationPath
  • +
  • SSLProxyCARevocationURI
  • SSLProxyCheckPeerCN
  • SSLProxyCheckPeerExpire
  • SSLProxyCheckPeerName
  • @@ -786,6 +793,7 @@
  • SSLProxyMachineCertificateChainFile
  • SSLProxyMachineCertificateFile
  • SSLProxyMachineCertificatePath
  • +
  • SSLProxyMachineCertificateURI
  • SSLProxyProtocol
  • SSLProxyVerify
  • SSLProxyVerifyDepth
  • diff --git a/docs/manual/mod/directives.html.zh-cn.utf8 b/docs/manual/mod/directives.html.zh-cn.utf8 index a0fa083d05..f8cdc83e1d 100644 --- a/docs/manual/mod/directives.html.zh-cn.utf8 +++ b/docs/manual/mod/directives.html.zh-cn.utf8 @@ -492,6 +492,7 @@
  • MDDriveMode
  • MDExternalAccountBinding
  • MDHttpProxy
  • +
  • MDHttpProxyCACertificateFile
  • MDInitialDelay
  • MDMatchNames
  • MDMember
  • @@ -741,14 +742,18 @@
  • SSIUndefinedEcho
  • SSLCACertificateFile
  • SSLCACertificatePath
  • +
  • SSLCACertificateURI
  • SSLCADNRequestFile
  • SSLCADNRequestPath
  • +
  • SSLCADNRequestURI
  • SSLCARevocationCheck
  • SSLCARevocationFile
  • SSLCARevocationPath
  • +
  • SSLCARevocationURI
  • SSLCertificateChainFile
  • SSLCertificateFile
  • SSLCertificateKeyFile
  • +
  • SSLCertificateURI
  • SSLCipherSuite
  • SSLClientHelloVars
  • SSLCompression
  • @@ -774,9 +779,11 @@
  • SSLProtocol
  • SSLProxyCACertificateFile
  • SSLProxyCACertificatePath
  • +
  • SSLProxyCACertificateURI
  • SSLProxyCARevocationCheck
  • SSLProxyCARevocationFile
  • SSLProxyCARevocationPath
  • +
  • SSLProxyCARevocationURI
  • SSLProxyCheckPeerCN
  • SSLProxyCheckPeerExpire
  • SSLProxyCheckPeerName
  • @@ -785,6 +792,7 @@
  • SSLProxyMachineCertificateChainFile
  • SSLProxyMachineCertificateFile
  • SSLProxyMachineCertificatePath
  • +
  • SSLProxyMachineCertificateURI
  • SSLProxyProtocol
  • SSLProxyVerify
  • SSLProxyVerifyDepth
  • diff --git a/docs/manual/mod/mod_access_compat.html.en.utf8 b/docs/manual/mod/mod_access_compat.html.en.utf8 index f4a49eb60e..d09afa4b31 100644 --- a/docs/manual/mod/mod_access_compat.html.en.utf8 +++ b/docs/manual/mod/mod_access_compat.html.en.utf8 @@ -33,7 +33,7 @@
    - + [host|env=[!]env-variable] ... - +
    Description:Group authorizations based on host (name or IP address)
    Status:Extension
    Status:Deprecated
    Module Identifier:access_compat_module
    Source File:mod_access_compat.c
    Compatibility:Available in Apache HTTP Server 2.3 as a compatibility module with @@ -110,7 +110,7 @@ server
    Context:directory, .htaccess
    Override:Limit
    Status:Extension
    Status:Deprecated
    Module:mod_access_compat

    The Allow directive affects which hosts can @@ -236,7 +236,7 @@ server [host|env=[!]env-variable] ... Context:directory, .htaccess Override:Limit -Status:Extension +Status:Deprecated Module:mod_access_compat

    This directive allows access to the server to be restricted @@ -255,7 +255,7 @@ evaluated. Default:Order Deny,Allow Context:directory, .htaccess Override:Limit -Status:Extension +Status:Deprecated Module:mod_access_compat @@ -406,7 +406,7 @@ user authentication Default:Satisfy All Context:directory, .htaccess Override:AuthConfig -Status:Extension +Status:Deprecated Module:mod_access_compat

    Access policy if both Allow and Require used. The parameter can be diff --git a/docs/manual/mod/mod_access_compat.html.es.utf8 b/docs/manual/mod/mod_access_compat.html.es.utf8 index 755ed69ea9..97fb9e9d4b 100644 --- a/docs/manual/mod/mod_access_compat.html.es.utf8 +++ b/docs/manual/mod/mod_access_compat.html.es.utf8 @@ -31,6 +31,10 @@  fr  |  ja 

    +
    Esta traducción podría estar + obsoleta. Consulte la versión en inglés de la + documentación para comprobar si se han producido cambios + recientemente.
    diff --git a/docs/manual/mod/mod_cern_meta.html.en.utf8 b/docs/manual/mod/mod_cern_meta.html.en.utf8 index 5fab64dea0..ebefc52fd2 100644 --- a/docs/manual/mod/mod_cern_meta.html.en.utf8 +++ b/docs/manual/mod/mod_cern_meta.html.en.utf8 @@ -31,7 +31,7 @@  ko 

    Descripción:Autorizaciones de grupo basadas en el host (nombre o dirección IP)
    Estado:Extensión
    Identificador de Módulos:access_compat_module
    - +
    Description:CERN httpd metafile semantics
    Status:Extension
    Status:Deprecated
    Module Identifier:cern_meta_module
    Source File:mod_cern_meta.c

    Summary

    @@ -68,7 +68,7 @@ files Default:MetaDir .web Context:server config, virtual host, directory, .htaccess Override:Indexes -Status:Extension +Status:Deprecated Module:mod_cern_meta

    Specifies the name of the directory in which Apache can find @@ -95,7 +95,7 @@ files Default:MetaFiles off Context:server config, virtual host, directory, .htaccess Override:Indexes -Status:Extension +Status:Deprecated Module:mod_cern_meta

    Turns on/off Meta file processing on a per-directory basis.

    @@ -110,7 +110,7 @@ meta information Default:MetaSuffix .meta Context:server config, virtual host, directory, .htaccess Override:Indexes -Status:Extension +Status:Deprecated Module:mod_cern_meta

    Specifies the file name suffix for the file containing the diff --git a/docs/manual/mod/mod_imagemap.html.en.utf8 b/docs/manual/mod/mod_imagemap.html.en.utf8 index b6aff1b645..c817a8225e 100644 --- a/docs/manual/mod/mod_imagemap.html.en.utf8 +++ b/docs/manual/mod/mod_imagemap.html.en.utf8 @@ -31,7 +31,7 @@  ko 

    - +
    Description:Server-side imagemap processing
    Status:Base
    Status:Deprecated
    Module Identifier:imagemap_module
    Source File:mod_imagemap.c

    Summary

    @@ -302,7 +302,7 @@ Default:ImapBase http://servername/ Context:server config, virtual host, directory, .htaccess Override:Indexes -Status:Base +Status:Deprecated Module:mod_imagemap

    The ImapBase directive sets the default @@ -325,7 +325,7 @@ that are not explicitly mapped Default:ImapDefault nocontent Context:server config, virtual host, directory, .htaccess Override:Indexes -Status:Base +Status:Deprecated Module:mod_imagemap

    The ImapDefault directive sets the default @@ -346,7 +346,7 @@ an imagemap Default:ImapMenu formatted Context:server config, virtual host, directory, .htaccess Override:Indexes -Status:Base +Status:Deprecated Module:mod_imagemap

    The ImapMenu directive determines the diff --git a/docs/manual/mod/mod_md.html.en.utf8 b/docs/manual/mod/mod_md.html.en.utf8 index 506a2acf81..351c034928 100644 --- a/docs/manual/mod/mod_md.html.en.utf8 +++ b/docs/manual/mod/mod_md.html.en.utf8 @@ -129,7 +129,7 @@

    And the `tls-alpn-01` challenge type is available. -

    +

    Wildcard Certificates

    @@ -306,6 +306,7 @@
  • MDDriveMode
  • MDExternalAccountBinding
  • MDHttpProxy
  • +
  • MDHttpProxyCACertificateFile
  • MDInitialDelay
  • MDMatchNames
  • MDMember
  • @@ -377,6 +378,7 @@ Context:server config Status:Experimental Module:mod_md +Compatibility:Since version 2.4.69, this can be configured separately for each MDomain.

    This is mainly used in test setups where the module needs to @@ -775,9 +777,39 @@ Context:server config Status:Experimental Module:mod_md +Compatibility:Since version 2.4.69, a proxy can be configured separately for each MDomain. -

    Use a http proxy to connect to the MDCertificateAuthority. Define this - if your webserver can only reach the internet with a forward proxy. +

    + Use the given http forward proxy URL to connect to the MDCertificateAuthority. + Define this if your webserver can only reach the internet with a forward proxy. +

    + +
    +
    top
    +

    MDHttpProxyCACertificateFile Directive

    + + + + + + + + +
    Description:Sets the root (CA) certificates to use for TLS connections to the http-proxy.
    Syntax:MDHttpProxyCACertificateFile path-to-pem-file
    Default:MDHttpProxyCACertificateFile none
    Context:server config
    Status:Experimental
    Module:mod_md
    Compatibility:Available in version 2.4.69 and later
    +

    + This is used for connections to the HTTPS forward proxy (MDHttpProxy). + It is needed if the certificate of the HTTPS proxy cannot be verified using the general CA root store. + This is sometimes the case in test setups or enterprise environments. +

    +

    + The certificate of the ACME server is verified with the root certificates set by + MDCACertificateFile, so you might need to use both settings. +

    +

    + Use "none" as path to disable explicitly. +

    +

    + This can be configured separately for each MDomain.

    diff --git a/docs/manual/mod/mod_privileges.html.en.utf8 b/docs/manual/mod/mod_privileges.html.en.utf8 index e37ad74bc2..a3b402ed68 100644 --- a/docs/manual/mod/mod_privileges.html.en.utf8 +++ b/docs/manual/mod/mod_privileges.html.en.utf8 @@ -31,7 +31,7 @@ - + - + @@ -165,7 +165,7 @@ malicious privileges-aware code. - + @@ -207,7 +207,7 @@ subprocesses, and the privileges available to subprocesses. - + @@ -236,7 +236,7 @@ by a virtual host. - + - + @@ -306,7 +306,7 @@ non-threaded MPMs (prefork - + - + @@ -363,7 +363,7 @@ non-threaded MPMs (prefork - + diff --git a/docs/manual/mod/mod_proxy.html.en.utf8 b/docs/manual/mod/mod_proxy.html.en.utf8 index 47dc23d889..2b19db08c3 100644 --- a/docs/manual/mod/mod_proxy.html.en.utf8 +++ b/docs/manual/mod/mod_proxy.html.en.utf8 @@ -742,7 +742,7 @@ NoProxy .example.com 192.168.112.0/21
    Description:Support for Solaris privileges and for running virtual hosts under different user IDs.
    Status:Experimental
    Status:Deprecated
    Module Identifier:privileges_module
    Source File:mod_privileges.c
    Compatibility:Available in Apache 2.3 and up, on Solaris 10 and @@ -144,7 +144,7 @@ request-processing cycle.

    Syntax:DTracePrivileges On|Off
    Default:DTracePrivileges Off
    Context:server config
    Status:Experimental
    Status:Deprecated
    Module:mod_privileges
    Compatibility:Available on Solaris 10 and OpenSolaris with non-threaded MPMs (prefork or custom MPM).
    Syntax:PrivilegesMode FAST|SECURE|SELECTIVE
    Default:PrivilegesMode FAST
    Context:server config, virtual host, directory
    Status:Experimental
    Status:Deprecated
    Module:mod_privileges
    Compatibility:Available on Solaris 10 and OpenSolaris with non-threaded MPMs (prefork or custom MPM).
    Syntax:VHostCGIMode On|Off|Secure
    Default:VHostCGIMode On
    Context:virtual host
    Status:Experimental
    Status:Deprecated
    Module:mod_privileges
    Compatibility:Available on Solaris 10 and OpenSolaris with non-threaded MPMs (prefork or custom MPM).
    Syntax:VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...
    Default:None
    Context:virtual host
    Status:Experimental
    Status:Deprecated
    Module:mod_privileges
    Compatibility:Available on Solaris 10 and OpenSolaris with non-threaded MPMs (prefork or custom MPM) @@ -268,7 +268,7 @@ and when mod_privilege
    Default:Inherits the group id specified in Group
    Context:virtual host
    Status:Experimental
    Status:Deprecated
    Module:mod_privileges
    Compatibility:Available on Solaris 10 and OpenSolaris with non-threaded MPMs (prefork or custom MPM).
    Syntax:VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...
    Default:None
    Context:virtual host
    Status:Experimental
    Status:Deprecated
    Module:mod_privileges
    Compatibility:Available on Solaris 10 and OpenSolaris with non-threaded MPMs (prefork or custom MPM) @@ -337,7 +337,7 @@ for the virtualhost.
    Syntax:VHostSecure On|Off
    Default:VHostSecure On
    Context:virtual host
    Status:Experimental
    Status:Deprecated
    Module:mod_privileges
    Compatibility:Available on Solaris 10 and OpenSolaris with non-threaded MPMs (prefork or custom MPM).
    Default:Inherits the userid specified in User
    Context:virtual host
    Status:Experimental
    Status:Deprecated
    Module:mod_privileges
    Compatibility:Available on Solaris 10 and OpenSolaris with non-threaded MPMs (prefork or custom MPM).
    Module:mod_proxy

    Directives placed in <Proxy> - sections apply only to matching proxied content. Shell-style wildcards are + sections apply only to matching proxied content using a simple string prefix match against the URL. Shell-style wildcards are also allowed.

    For example, the following will allow only hosts in @@ -2173,6 +2173,13 @@ ProxyRemote ftp http://ftpproxy.mydomain:8080

    sent without first waiting for the remote proxy to send a Basic authentication challenge. The Proxy-Chain-Auth environment variable has no effect if this argument is used.

    + +

    DNS resolution and forward proxies

    +

    When a forward (remote) proxy is configured, DNS resolution of + the origin/backend hostname is only performed on the forward proxy. + Any ProxyBlock rules + which restrict access to specific IP addresses must be configured + at the forward proxy.

    diff --git a/docs/manual/mod/mod_proxy_beacon.html.en.utf8 b/docs/manual/mod/mod_proxy_beacon.html.en.utf8 index 1403a90c96..5999b9250c 100644 --- a/docs/manual/mod/mod_proxy_beacon.html.en.utf8 +++ b/docs/manual/mod/mod_proxy_beacon.html.en.utf8 @@ -79,13 +79,13 @@ to the reverse proxy over unicast UDP datagrams

    Authentication

    Any host that can reach the proxy's receive port could otherwise announce an arbitrary backend URL and cause the proxy to send client traffic to it - (and a UDP source address is trivially spoofable). Set - ProxyBeaconSecret to the same value on the proxy and on - every backend so that announcements are authenticated with a keyed - message-authentication code (MAC) and a timestamp. When a secret is - configured the proxy drops any announcement that is not validly signed and - recent. If no secret is configured the channel is unauthenticated - and the proxy logs a warning at startup.

    + (and a UDP source address is trivially spoofable). + ProxyBeaconSecret is therefore required: + it must be set to the same value on the proxy and on every backend, and the + server fails to start if any participating server omits it. Announcements are + authenticated with a keyed message-authentication code (MAC) and a timestamp, + and the proxy drops any announcement that is not validly signed and recent. + There is no unauthenticated mode.

    Confidentiality

    @@ -340,16 +340,19 @@ beacons advance, so a captured-and-resent message (for example, one replayed to keep a dead backend from being evicted) is dropped.

    -

    If ProxyBeaconSecret is set on the proxy, every - announcement must carry a valid, recent MAC or it is rejected. If the +

    This directive is required on every server that + participates in the beacon channel — the proxy + (ProxyBeaconListen) and every backend + (ProxyBeaconAddress). If any such server omits it, the + server fails to start; there is no unauthenticated mode.

    + +

    Every announcement must carry a valid, recent MAC or it is rejected. If the secrets on the proxy and a backend differ, that backend's announcements are silently rejected (and logged), which appears as the backend never joining the balancer.

    -

    If no secret is configured the channel is unauthenticated and the proxy - emits a warning when it starts listening. Because the secret is stored in - the configuration file, restrict that file's permissions as you would for a - private key.

    +

    Because the secret is stored in the configuration file, restrict that + file's permissions as you would for a private key.

    Clock synchronisation

    The timestamp-based replay protection compares the announcement's time diff --git a/docs/manual/mod/mod_proxy_wstunnel.html.en.utf8 b/docs/manual/mod/mod_proxy_wstunnel.html.en.utf8 index a0c852f021..7ccf296db8 100644 --- a/docs/manual/mod/mod_proxy_wstunnel.html.en.utf8 +++ b/docs/manual/mod/mod_proxy_wstunnel.html.en.utf8 @@ -31,7 +31,7 @@

    - +
    Description:Websockets support module for mod_proxy
    Status:Extension
    Status:Deprecated
    Module Identifier:proxy_wstunnel_module
    Source File:mod_proxy_wstunnel.c
    Compatibility:Available in httpd 2.4.5 and later
    @@ -99,7 +99,7 @@ WebSocket always happens. Description:Instructs this module to try to create an asynchronous tunnel Syntax:ProxyWebsocketAsync ON|OFF Context:server config, virtual host -Status:Extension +Status:Deprecated Module:mod_proxy_wstunnel

    This directive instructs the server to try to create an asynchronous tunnel. @@ -116,7 +116,7 @@ WebSocket always happens. Syntax:ProxyWebsocketAsyncDelay num[ms] Default:ProxyWebsocketAsyncDelay 0 Context:server config, virtual host -Status:Extension +Status:Deprecated Module:mod_proxy_wstunnel

    If ProxyWebsocketAsync is enabled, this directive @@ -136,7 +136,7 @@ WebSocket always happens. Syntax:ProxyWebsocketFallbackToProxyHttp On|Off Default:ProxyWebsocketFallbackToProxyHttp On Context:server config, virtual host -Status:Extension +Status:Deprecated Module:mod_proxy_wstunnel Compatibility:Available in httpd 2.4.48 and later @@ -155,7 +155,7 @@ WebSocket always happens. Syntax:ProxyWebsocketIdleTimeout num[ms] Default:ProxyWebsocketIdleTimeout 0 Context:server config, virtual host -Status:Extension +Status:Deprecated Module:mod_proxy_wstunnel

    This directive imposes a maximum amount of time for the tunnel to be diff --git a/docs/manual/mod/mod_rewrite.html.en.utf8 b/docs/manual/mod/mod_rewrite.html.en.utf8 index a0737f1406..f04184e5ad 100644 --- a/docs/manual/mod/mod_rewrite.html.en.utf8 +++ b/docs/manual/mod/mod_rewrite.html.en.utf8 @@ -169,7 +169,7 @@ URLs on the fly the current state of the URI matches its pattern, and if these conditions are met.

    If the CondPattern is prefixed with a ! the - condition is determined to be true only if the the + condition is determined to be true only if the CondPattern does not match.

    @@ -1140,7 +1140,7 @@ RewriteRule "^/$" "/homepage.std.html" [L]
    on where the RewriteRule directive is defined.

    If the pattern is prefixed with a ! the - substitution will be performed only if the the + substitution will be performed only if the pattern does not match.

    What is matched?

    diff --git a/docs/manual/mod/mod_ssl.html.en.utf8 b/docs/manual/mod/mod_ssl.html.en.utf8 index ebfca017aa..349a9cacf1 100644 --- a/docs/manual/mod/mod_ssl.html.en.utf8 +++ b/docs/manual/mod/mod_ssl.html.en.utf8 @@ -57,14 +57,18 @@ to provide the cryptographic engine.

    +
    top
    +

    SSLCACertificateURI Directive

    + + + + + + + + +
    Description:Server CA certificate store for Client Authentication
    Syntax:SSLCACertificateURI uri
    Context:server config, virtual host
    Override:AuthConfig
    Status:Extension
    Module:mod_ssl
    Compatibility:Available in httpd 2.5.1 and later, when linked with +OpenSSL v3 or later.
    +

    +This directive sets the all-in-one URI where you can assemble the +Certificates of Certification Authorities (CA) whose clients you deal +with. These are used for Client Authentication. This can be used alternatively +and/or additionally to SSLCACertificateFile +or SSLCACertificatePath.

    +

    Example

    # trust certs in a PEM encoded certificate bundle
    +SSLCACertificateURI "/usr/local/apache2/conf/ssl.crt/ca-bundle-client.crt"
    +# trust all certs in a typical Linux machine
    +SSLCACertificateURI "pkcs11:token=System%20Trust"
    +# trust all certs in the Windows trust store
    +SSLCACertificateURI "org.openssl.winstore:"
    +
    + +

    This URI is read at server startup, while the server is still running +as root (before privilege dropping), so it may be owned by +and readable only by root. The URI is not re-read during +normal operation; a server restart is required for changes to take +effect.

    +
    top

    SSLCADNRequestFile Directive

    @@ -457,16 +497,16 @@ in the SSL handshake. These CA names can be used by the client to select an appropriate client certificate out of those it has available.

    -

    If neither of the directives SSLCADNRequestPath or SSLCADNRequestFile are given, then the +

    If none of the directives SSLCADNRequestFile, SSLCADNRequestPath, or SSLCADNRequestURI are given, then the set of acceptable CA names sent to the client is the names of all the -CA certificates given by the SSLCACertificateFile and SSLCACertificatePath directives; in other +CA certificates given by the SSLCACertificateFile, SSLCACertificatePath, and SSLCACertificateURI directives; in other words, the names of the CAs which will actually be used to verify the client certificate.

    In some circumstances, it is useful to be able to send a set of acceptable CA names which differs from the actual CAs used to verify the client certificate - for example, if the client certificates are -signed by intermediate CAs. In such cases, SSLCADNRequestPath and/or SSLCADNRequestFile can be used; the +signed by intermediate CAs. In such cases, SSLCADNRequestFile, SSLCADNRequestPath, and/or SSLCADNRequestURI can be used; the acceptable CA names are then taken from the complete set of certificates in the directory and/or file specified by this pair of directives.

    @@ -515,6 +555,56 @@ may be owned by and readable only by root. The files are not re-read during normal operation; a server restart is required for changes to take effect.

    +
    +
    top
    +

    SSLCADNRequestURI Directive

    + + + + + + +
    Description:certificate store of CA Certificates for defining +acceptable CA names
    Syntax:SSLCADNRequestURI uri
    Context:server config, virtual host
    Status:Extension
    Module:mod_ssl
    +

    When a client certificate is requested by mod_ssl, a list of +acceptable Certificate Authority names is sent to the client +in the SSL handshake. These CA names can be used by the client to +select an appropriate client certificate out of those it has +available.

    + +

    If none of the directives SSLCADNRequestFile, SSLCADNRequestPath, or SSLCADNRequestURI are given, then the +set of acceptable CA names sent to the client is the names of all the +CA certificates given by the SSLCACertificateFile, SSLCACertificatePath, and SSLCACertificateURI directives; in other +words, the names of the CAs which will actually be used to verify the +client certificate.

    + +

    In some circumstances, it is useful to be able to send a set of +acceptable CA names which differs from the actual CAs used to verify +the client certificate - for example, if the client certificates are +signed by intermediate CAs. In such cases, SSLCADNRequestFile, SSLCADNRequestPath, and/or SSLCADNRequestURI can be used; the +acceptable CA names are then taken from the complete set of +certificates in the directory and/or file specified by this pair of +directives.

    + +

    SSLCADNRequestURI must +specify an all-in-one certificate store uri containing a +set of CA certificates.

    + +

    Example

    SSLCADNRequestURI "file:///usr/local/apache2/conf/ca-names.crt"
    +
    + +

    A file: URI pointing at a file of PEM encoded certificates +can be used instead of SSLCADNRequestFile, and a file: +URI pointing at a directory of PEM encoded certificates can be used +instead of SSLCADNRequestPath. +

    + +

    This store is read at server startup, while the server is still running +as root (before privilege dropping), so it may be owned by +and readable only by root. The uri is not re-read during +normal operation; a server restart is required for changes to take +effect.

    +
    top

    SSLCARevocationCheck Directive

    @@ -620,6 +710,37 @@ may be owned by and readable only by root. The files are not re-read during normal operation; a server restart is required for changes to take effect.

    +
    +
    top
    +

    SSLCARevocationURI Directive

    + + + + + + +
    Description:Server CA certificate revocation list store for Client Authentication
    Syntax:SSLCARevocationURI uri
    Context:server config, virtual host
    Status:Extension
    Module:mod_ssl
    +

    +This directive sets the all-in-one file where you can +assemble the Certificate Revocation Lists (CRL) of Certification +Authorities (CA) whose clients you deal with. These are used +for Client Authentication. This can be used alternatively and/or +additionally to SSLCARevocationFile and SSLCARevocationPath.

    +

    Example

    SSLCARevocationURI "/usr/local/apache2/conf/ssl.crl/ca-bundle-client.crl"
    +
    + +

    A file: URI pointing at a file of PEM encoded CRLs +can be used instead of SSLCARevocationFile, and a file: +URI pointing at a directory of PEM encoded CRLs can be used +instead of SSLCARevocationPath. +

    + +

    This URI is read at server startup, while the server is still running +as root (before privilege dropping), so it may be owned by +and readable only by root. The URI is not re-read during +normal operation; a server restart is required for changes to take +effect.

    +
    top

    SSLCertificateChainFile Directive

    @@ -856,6 +977,86 @@ and readable only by root, since it contains the private key. The file is not re-read during normal operation; a server restart is required for changes to take effect.

    +
    +
    top
    +

    SSLCertificateURI Directive

    + + + + + + + +
    Description:Server certificate and key store
    Syntax:SSLCertificateURI uri
    Context:server config, virtual host
    Status:Extension
    Module:mod_ssl
    Compatibility:Available in httpd 2.5.1 and later, when linked with +OpenSSL v3 or later.
    +

    +This directive points to a certificate store containing certificates, +intermediate certificates, and private keys, represented by a URI. +

    +

    +If no scheme is specified, the path will default to a file: +URI, pointing at PEM encoded data, or a PKCS12 file. Other schemes +include, but are not limited to, pkcs11: for smartcards and +HSMs, cng: for the Windows certificate store, and +handle: for TPMs. On Windows, where a file path is also a +valid URI, the file: scheme must be used. +

    +

    +The directive can be specified multiple times with tightly scoped +URIs to target specific certificates and keys, or could be specified +with a general URI like pkcs11: that considers all possible +certificates and keys. Certificates, intermediate certificates, and keys +can be defined in any order. +

    +

    Certificates and keys are processed as follows. +

    +
      +
    • Leaf certificates that do not have the purpose Server Authentication +are skipped.
    • +
    • Remaining leaf certificates are checked whether the +ServerName and all +ServerAlias directives match the +hostname or IP address of the certificate, and if no match is found they +are skipped.
    • +
    • Intermediate certificates are considered for building certificate +chains on a best effort basis.
    • +
    • Keys are matched up with leaf certificates, any certificate +without a private key is skipped.
    • +
    • Leaf certificates with private keys are sorted oldest to newest and +passed on for configuration.
    • +
    • The most recently issued certificate and key pair for each algorithm +type (RSA, ECDSA, etc) will be used for each virtual host.
    • +
    • The server will report back to you how many certificates of each type +were found to help you if no certificates match.
    • +
    + +

    If the private key is encrypted, the pass phrase dialog is forced +at startup time.

    + +

    Example

    # Example using a PEM-encoded file.
    +SSLCertificateURI "/usr/local/apache2/conf/ssl.crt/server.crt"
    +# Example using a PKCS12 file.
    +SSLCertificateURI "/usr/local/apache2/conf/ssl.crt/server.p12"
    +# Example use of a certificate and private key from a PKCS#11 token:
    +SSLCertificateURI "pkcs11:token=My%20Token%20Name;id=45"
    +
    + +

    These URIs are read at server startup, while the server is still running +as root (before privilege dropping), so it may be owned by +and readable only by root. The URI is not re-read during +normal operation; a server restart is required for changes to take +effect.

    + +

    Using SSLCertificateFile and SSLCertificateURI +together

    +

    +You can use both SSLCertificateFile and SSLCertificateURI together, however +there is no overlap between the mechanisms. A certificate defined by +SSLCertificateFile will not be matched with a key from SSLCertificateURI. +

    +
    + +
    top

    SSLCipherSuite Directive

    @@ -1880,6 +2081,28 @@ contains the appropriate symbolic links.

    Example

    SSLProxyCACertificatePath "/usr/local/apache2/conf/ssl.crt/"
    +
    +
    top
    +

    SSLProxyCACertificateURI Directive

    + + + + + + + +
    Description:Proxy CA certificate store for Remote Server Auth
    Syntax:SSLProxyCACertificateURI uri
    Context:server config, virtual host, proxy section
    Status:Extension
    Module:mod_ssl
    Compatibility:Available in httpd 2.5.1 and later, when linked with +OpenSSL v3 or later.
    +

    +This directive sets the all-in-one URI where you can assemble the +Certificates of Certification Authorities (CA) whose remote servers you deal +with. These are used for Remote Server Authentication. This can be used alternatively +and/or additionally to +SSLProxyCACertificateFile and +SSLProxyCACertificatePath.

    +

    Example

    SSLProxyCACertificateURI "/usr/local/apache2/conf/ssl.crt/ca-bundle-remote-server.crt"
    +
    +
    top

    SSLProxyCARevocationCheck Directive

    @@ -1965,6 +2188,27 @@ contains the appropriate symbolic links.

    Example

    SSLProxyCARevocationPath "/usr/local/apache2/conf/ssl.crl/"
    +
    +
    top
    +

    SSLProxyCARevocationURI Directive

    + + + + + + + +
    Description:Proxy CA certificate revocation list store for Remote Server Auth
    Syntax:SSLProxyCARevocationURI uri
    Context:server config, virtual host, proxy section
    Status:Extension
    Module:mod_ssl
    Compatibility:Available in httpd 2.5.1 and later, when linked with +OpenSSL v3 or later.
    +

    +This directive sets the all-in-one URI where you can +assemble the Certificate Revocation Lists (CRL) of Certification +Authorities (CA) whose remote servers you deal with. These are used +for Remote Server Authentication. This can be +used alternatively and/or additionally to SSLProxyCARevocationFile and SSLProxyCARevocationPath.

    +

    Example

    SSLProxyCARevocationURI "/usr/local/apache2/conf/ssl.crl/ca-bundle-remote-server.crl"
    +
    +
    top

    SSLProxyCheckPeerCN Directive

    @@ -2237,6 +2481,99 @@ must be converted, eg. using

    Example

    SSLProxyMachineCertificatePath "/usr/local/apache2/conf/proxy.crt/"
    +
    +
    top
    +

    SSLProxyMachineCertificateURI Directive

    + + + + + + + +
    Description:Proxy certificate and key stores
    Syntax:SSLProxyMachineCertificateURI uri
    Context:server config, virtual host, proxy section
    Status:Extension
    Module:mod_ssl
    Compatibility:Available in httpd 2.5.1 and later, when linked with +OpenSSL v3 or later.
    +

    +This directive points to a certificate store containing certificates, +intermediate certificates, and private keys, represented by a URI, +to be used when authenticating to another proxy server. +

    +

    +If no scheme is specified, the path will default to a file: +URI, pointing at PEM encoded data, or a PKCS12 file. Other schemes +include, but are not limited to, pkcs11: for smartcards and +HSMs, cng: for the Windows certificate store, and +handle: for TPMs. On Windows, where a file path is also a +valid URI, the file: scheme must be used. +

    +

    +The directive can be specified multiple times with tightly scoped +URIs to target specific certificates and keys, or could be specified +with a general URI like pkcs11: that considers all possible +certificates and keys. Certificates, intermediate certificates, and keys +can be defined in any order. +

    +

    Proxy certificates and keys are processed as follows. +

    +
      +
    • Leaf certificates that do not have the purpose Client Authentication +are skipped.
    • +
    • Intermediate certificates are considered for building certificate +chains on a best effort basis.
    • +
    • Keys are matched up with leaf certificates, any certificate +without a private key is skipped.
    • +
    • Leaf certificates with private keys are sorted newest to oldest and +are considered during each SSL handshake with a proxy.
    • +
    • The proxy will report back to you how many certificates of each type +were found to help you if no certificates match.
    • +
    + +

    If the private key is encrypted, the pass phrase dialog is forced +at startup time.

    + +

    Example

    # Example using a PEM-encoded file.
    +SSLProxyMachineCertificateURI "/usr/local/apache2/conf/ssl.crt/proxy.pem"
    +# Example using a PKCS12 file.
    +SSLProxyMachineCertificateURI "/usr/local/apache2/conf/ssl.crt/proxy.p12"
    +# Example use of a certificate and private key from a PKCS#11 token:
    +SSLProxyMachineCertificateURI "pkcs11:token=My%20Token%20Name;id=45"
    +
    + +

    These URIs are read at server startup, while the server is still running +as root (before privilege dropping), so it may be owned by +and readable only by root. The URI is not re-read during +normal operation; a server restart is required for changes to take +effect.

    + +

    When challenged to provide a client certificate by a remote server, +the server should provide a list of acceptable certificate +authority names in the challenge. If such a list is not +provided, mod_ssl will use the most recently +issued client certificate and key. If a list of CA names +is provided, mod_ssl will iterate through +that list, and attempt to find a configured client certificate which +was issued either directly by that CA, or indirectly via any number of +intermediate CA certificates. +

    + +

    If the list of CA names is provided by the remote server, +and no matching client certificate can be found, no client +certificate will be provided by mod_ssl, which will +likely fail the SSL/TLS handshake (depending on the remote server +configuration).

    + +

    Using SSLProxyMachineCertificateFile and +SSLProxyMachineCertificateURI together

    +

    +You can use both SSLProxyMachineCertificateFile and +SSLProxyMachineCertificateURI together, however there is +no overlap between the mechanisms. A certificate defined by +SSLProxyMachineCertificateFile will not be matched with a +key from SSLProxyMachineCertificateURI. +

    +
    + +
    top

    SSLProxyProtocol Directive

    diff --git a/docs/manual/mod/mod_ssl.html.es.utf8 b/docs/manual/mod/mod_ssl.html.es.utf8 index 8e6c76147f..16eebfad61 100644 --- a/docs/manual/mod/mod_ssl.html.es.utf8 +++ b/docs/manual/mod/mod_ssl.html.es.utf8 @@ -63,14 +63,18 @@ proveer el motor criptográfico.

    top
    +

    Directiva SSLCACertificateURI

    + + + + + + + + +
    Descripción:Server CA certificate store for Client Authentication
    Sintaxis:SSLCACertificateURI uri
    Contexto:server config, virtual host
    Anula:AuthConfig
    Estado:Extensión
    Módulo:mod_ssl
    Compatibilidad:Available in httpd 2.5.1 and later, when linked with +OpenSSL v3 or later.

    The documentation for this directive has + not been translated yet. Please have a look at the English + version.

    +
    top

    Directiva SSLCADNRequestFile

    - - - - + + + - - - + - + - + presence or absence of a specific section directive - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + - - + - - + - - - + + - - - + + - - - - - - - - + + + + + - - - + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + - - - + + - - - - + + + - - - + + - - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - + - - - + + + - - + - - + - - - - - - - - - - + + + + + + + + + - - - - - - - - + + + + + - - - - - - + + + + - - - - - + + + + - - - - + + + - - - - + - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - + + + - - + - - - - - - + - - + - - - + + + - - - - + - - - - - - - - - - + + + + + + - - + - - - - + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - + - - - - - + + + + - - + - - - - - - - + + + + + + + - - - - - + + + + - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - + + - + - + - - - - - - - + + + + + - - - - - + + - + ´ëÀÀÇÑ´Ù - - - - + + + - - - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + - - - + + - - - + + - - - - - - - + + - - - - + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + - - + - - - - - + + + - - - + + - - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - + - - - + + + - - + - - + - - - - + + + - - - - - - + + + + - - - - - - + - - + - - - - - - + + + + - - - - - + + + + - - - - + + + - - - - + - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - + - - - - - - + - - + - - - + + + - - - - - - - - - - - - - - + + + + + - - + - - - + - - - - + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - + - - - - - + + + + - - + + - - - - - + - - + - - - + + - - + - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - + + - + - + - - - - - - - + + + + + - - - - - + + - + eşler. - - - - + + + - - - + - + ... </DirectoryMatch> - + @@ -607,10 +607,10 @@ yönergeleri sarmalar. presence or absence of a specific section directive - - + - @@ -791,438 +791,447 @@ processing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + - - + - - + - - - + + - - - + + - - - - + + - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + - - + - - - - - + + + - - - + + - - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - + - - - + + + - - + - - + - - - - + + + - - - - - - + + + + - - - - - - + - - + - - - - - - + + + + - - - - - + + + + - - + - - + - - - - + - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - + - - - - - - + - - + - - - + + + - - - - - - - + - - - + + - - + - - + - - + - - - - - - + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - + - - - - - + + + + - - + - - - - - + + - - + - - - + + - - + - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - + + - + - + - - - - - - - + + + + + - - - - - + + - + expressions - - - - + + + - - - + - + - + presence or absence of a specific section directive - - + - @@ -785,442 +785,451 @@ simultaneously - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + - - + - - + - - - + + - - - + + - - - - - - - + + - - - - + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + - - + - - - - - + + + - - - + + - - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - + - - - + + + - - + - - + - - - - + + + - - - - - - + + + + - - - - - - + - - + - - - - - - + + + + - - - - - + + + + - - + - - + - - - - + - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - + - - - - - - + - - + - - - + + + - - - - - - - - - - + - - + - - + - - + - - - + - - - - + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - + - - - - - + + + + - - + - - - - - + - - + - - - + + - - + - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - + + - + - + - - - - - - - + + + + + requests - - - - - + + - +
    Descripción:Fichero de certificados CA concatenados codificados en PEM para @@ -486,6 +507,18 @@ apropiados.

    top
    +

    Directiva SSLCADNRequestURI

    + + + + + + +
    Descripción:certificate store of CA Certificates for defining +acceptable CA names
    Sintaxis:SSLCADNRequestURI uri
    Contexto:server config, virtual host
    Estado:Extensión
    Módulo:mod_ssl

    The documentation for this directive has + not been translated yet. Please have a look at the English + version.

    +
    top

    Directiva SSLCARevocationCheck

    @@ -588,6 +621,17 @@ que este directorio contiene los enlaces simbólicos apropiados.

    top
    +

    Directiva SSLCARevocationURI

    +
    Descripción:Activar comprobación de revocación basada en CRL
    + + + + + +
    Descripción:Server CA certificate revocation list store for Client Authentication
    Sintaxis:SSLCARevocationURI uri
    Contexto:server config, virtual host
    Estado:Extensión
    Módulo:mod_ssl

    The documentation for this directive has + not been translated yet. Please have a look at the English + version.

    +
    top

    Directiva SSLCertificateChainFile

    expressions - - - - + + + - - - + - + - + presence or absence of a specific section directive - - + - @@ -797,447 +797,456 @@ simultaneously - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + - - + - - + - - + - - - - + + - - - - - - - + + - - - - + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + - - + - - - - - + + + - - - + + - - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - + - - - + + + - - + - - + - - - - + + + - - - - - - + + + + - - - - - - + - - + - - - - - - + + + + - - - - - + + + + - - + - - + - - - - + - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - + - - - - - - + - - + - - - + + + - - - - - - - - - - + - - + - - + - - + - - - - - - + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - + - - - - - + + + + - - + - - - - - + + - - + - - - + + - - + - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - + + - + - + - - - - - - - + + + + + requests - - - - - + + - + expressions - - - - + + + - - - + - + - + presence or absence of a specific section directive - - + - @@ -790,442 +790,451 @@ simultaneously - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + - - + - - + - - - + + - - - + + - - - - - - - + + - - - - + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + - - + - - - - - + + + - - - + + - - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - + - - - + + + - - + - - + - - - - + + + - - - - - - + + + + - - - - - - + - - + - - - - - - + + + + - - - - - + + + + - - + - - + - - - - + - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - + - - - - - - + - - + - - - + + + - - - - - - - - - - + - - + - - + - - + - - - + - - - - + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - + - - - - - + + + + - - + - - - - - + - - + - - - + + - - + - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - + + - + - + - - - - - - - + + + + + requests - - - - - + + - + - - - - + + + - - - + - + - + presence or absence of a specific section directive - - + - @@ -788,453 +788,462 @@ simultaneously - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + - - + - - + - - - + + - - - + + - - - - - - - + + - - - - + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + - - + - - - - - + + + - - - + + - - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - + - - - + + + - - + - - + - - - - + + + - - - - - - + + + + - - - - - - + - - + - - - - - - + + + + - - - - - + + + + - - + - - - + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - + - - - - - - + - - + - - - + + + - - - - + - - - + + - - - + - - + - - + - - + - - - + - - - - + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - + - - - - - + + + + - - + - - - - - + - - + - - - + + - - + - + - - + + - + - + - - - - - - - + + + + + + - - - - - - + - - - + + - - + - - - - - + + - + - + - - - - - + - - + @@ -1318,15 +1327,15 @@ port requests - - - - - + + - + codés en PEM pour l'authentification des clients - + - + - + - - + @@ -1548,12 +1553,14 @@ disponibles codés en PEM pour l'authentification des serveurs distants - + - - + @@ -1573,133 +1580,134 @@ mandataire de choisir un certificat clients codés en PEM que le mandataire doit utiliser - + - - - - - - - - - - - - - - + + + + - - + - - - - - - + - - - - + + - - - - + - - - - - + + + - - - - - - - - + + - - - - - + + + + - - - - - - - - + - - - - - - - - - + - - + -
    Descripción:Fichero de Certificados CA de Servidor codificado en @@ -773,6 +817,19 @@ clave privada en otro fichero.

    top
    +

    Directiva SSLCertificateURI

    + + + + + + + +
    Descripción:Server certificate and key store
    Sintaxis:SSLCertificateURI uri
    Contexto:server config, virtual host
    Estado:Extensión
    Módulo:mod_ssl
    Compatibilidad:Available in httpd 2.5.1 and later, when linked with +OpenSSL v3 or later.

    The documentation for this directive has + not been translated yet. Please have a look at the English + version.

    +
    top

    Directiva SSLCipherSuite

    - - + + + - - - - + + + - - + - - - - - - + + + + +
    Descripción:Conjunto de Cifrados disponibles para negociación en el saludo SSL @@ -1720,6 +1777,19 @@ apropiados.

    top
    +

    Directiva SSLProxyCACertificateURI

    + + + + + + + +
    Descripción:Proxy CA certificate store for Remote Server Auth
    Sintaxis:SSLProxyCACertificateURI uri
    Contexto:server config, virtual host, sección de proxy
    Estado:Extensión
    Módulo:mod_ssl
    Compatibilidad:Available in httpd 2.5.1 and later, when linked with +OpenSSL v3 or later.

    The documentation for this directive has + not been translated yet. Please have a look at the English + version.

    +
    top

    Directiva SSLProxyCARevocationCheck

    - +
    Descripción:Activa la comprobación de revocación basada en CRL para la @@ -1808,6 +1878,19 @@ directorio tiene los enlaces simbólicos apropiados.

    top
    +

    Directiva SSLProxyCARevocationURI

    + + + + + + + +
    Descripción:Proxy CA certificate revocation list store for Remote Server Auth
    Sintaxis:SSLProxyCARevocationURI uri
    Contexto:server config, virtual host, sección de proxy
    Estado:Extensión
    Módulo:mod_ssl
    Compatibilidad:Available in httpd 2.5.1 and later, when linked with +OpenSSL v3 or later.

    The documentation for this directive has + not been translated yet. Please have a look at the English + version.

    +
    top

    Directiva SSLProxyCheckPeerCN

    log-URL|- - +
    Descripción:Comprobar el campo CN del certificado del servidor remoto @@ -2051,6 +2134,19 @@ de que este directorio contiene los enlaces simbólicos apropiados.

    top
    +

    Directiva SSLProxyMachineCertificateURI

    + + + + + + + +
    Descripción:Proxy certificate and key stores
    Sintaxis:SSLProxyMachineCertificateURI uri
    Contexto:server config, virtual host, sección de proxy
    Estado:Extensión
    Módulo:mod_ssl
    Compatibilidad:Available in httpd 2.5.1 and later, when linked with +OpenSSL v3 or later.

    The documentation for this directive has + not been translated yet. Please have a look at the English + version.

    +
    top

    Directiva SSLProxyProtocol

    - +
    Descripción:Configure sabores de protocolo SSL utilizables para uso de diff --git a/docs/manual/mod/mod_ssl.html.fr.utf8 b/docs/manual/mod/mod_ssl.html.fr.utf8 index d08ed6bc2b..322ba726c0 100644 --- a/docs/manual/mod/mod_ssl.html.fr.utf8 +++ b/docs/manual/mod/mod_ssl.html.fr.utf8 @@ -30,6 +30,8 @@  es  |  fr 

    +
    Cette traduction peut être périmée. Vérifiez la version + anglaise pour les changements récents.
    @@ -59,14 +61,18 @@ disponibles avec Require
    Description:Chiffrement de haut niveau basé sur les protocoles Secure Sockets Layer (SSL) et Transport Layer Security (TLS)
    Statut:Extension
    + + + + + + + +
    Description:Server CA certificate store for Client Authentication
    Syntaxe:SSLCACertificateURI uri
    Contexte:configuration globale, serveur virtuel
    Surcharges autorisées:AuthConfig
    Statut:Extension
    Module:mod_ssl
    Compatibilité:Available in httpd 2.5.1 and later, when linked with +OpenSSL v3 or later.

    La documentation de cette directive + n'a pas encore été traduite. Veuillez vous reporter à la version + en langue anglaise.

    +
    top

    Directive SSLCADNRequestFile

    - +
    Description:Fichier contenant la concaténation des certificats de CA @@ -622,6 +645,18 @@ effet.

    top
    +

    Directive SSLCADNRequestURI

    + + + + + + +
    Description:certificate store of CA Certificates for defining +acceptable CA names
    Syntaxe:SSLCADNRequestURI uri
    Contexte:configuration globale, serveur virtuel
    Statut:Extension
    Module:mod_ssl

    La documentation de cette directive + n'a pas encore été traduite. Veuillez vous reporter à la version + en langue anglaise.

    +
    top

    Directive SSLCARevocationCheck

    @@ -747,6 +782,17 @@ effet.

    top
    +

    Directive SSLCARevocationURI

    +
    Description:Active la vérification des révocations basée sur les CRL
    + + + + + +
    Description:Server CA certificate revocation list store for Client Authentication
    Syntaxe:SSLCARevocationURI uri
    Contexte:configuration globale, serveur virtuel
    Statut:Extension
    Module:mod_ssl

    La documentation de cette directive + n'a pas encore été traduite. Veuillez vous reporter à la version + en langue anglaise.

    +
    top

    Directive SSLCertificateChainFile

    - +
    Description:Fichier contenant les certificats de CA du serveur codés en @@ -996,6 +1042,19 @@ changements prennent effet.

    top
    +

    Directive SSLCertificateURI

    + + + + + + + +
    Description:Server certificate and key store
    Syntaxe:SSLCertificateURI uri
    Contexte:configuration globale, serveur virtuel
    Statut:Extension
    Module:mod_ssl
    Compatibilité:Available in httpd 2.5.1 and later, when linked with +OpenSSL v3 or later.

    La documentation de cette directive + n'a pas encore été traduite. Veuillez vous reporter à la version + en langue anglaise.

    +
    top

    Directive SSLCipherSuite

    - +
    Description:Algorithmes de chiffrement disponibles pour la négociation @@ -2142,6 +2201,19 @@ assurer que ce répertoire contient les liens symboliques approprié
    top
    +

    Directive SSLProxyCACertificateURI

    + + + + + + + +
    Description:Proxy CA certificate store for Remote Server Auth
    Syntaxe:SSLProxyCACertificateURI uri
    Contexte:configuration globale, serveur virtuel,
    Statut:Extension
    Module:mod_ssl
    Compatibilité:Available in httpd 2.5.1 and later, when linked with +OpenSSL v3 or later.

    La documentation de cette directive + n'a pas encore été traduite. Veuillez vous reporter à la version + en langue anglaise.

    +
    top

    Directive SSLProxyCARevocationCheck

    - +
    Description:Active la vérification des révocations basée sur les CRLs @@ -2237,6 +2309,19 @@ assurer que ce répertoire contient les liens symboliques approprié
    top
    +

    Directive SSLProxyCARevocationURI

    + + + + + + + +
    Description:Proxy CA certificate revocation list store for Remote Server Auth
    Syntaxe:SSLProxyCARevocationURI uri
    Contexte:configuration globale, serveur virtuel,
    Statut:Extension
    Module:mod_ssl
    Compatibilité:Available in httpd 2.5.1 and later, when linked with +OpenSSL v3 or later.

    La documentation de cette directive + n'a pas encore été traduite. Veuillez vous reporter à la version + en langue anglaise.

    +
    top

    Directive SSLProxyCheckPeerCN

    - +
    Description:Configuration de la vérification du champ CN du certificat @@ -2536,6 +2621,19 @@ PRIVATE KEY-----", doivent être converties via une commande du styl
    top
    +

    Directive SSLProxyMachineCertificateURI

    + + + + + + + +
    Description:Proxy certificate and key stores
    Syntaxe:SSLProxyMachineCertificateURI uri
    Contexte:configuration globale, serveur virtuel,
    Statut:Extension
    Module:mod_ssl
    Compatibilité:Available in httpd 2.5.1 and later, when linked with +OpenSSL v3 or later.

    La documentation de cette directive + n'a pas encore été traduite. Veuillez vous reporter à la version + en langue anglaise.

    +
    top

    Directive SSLProxyProtocol

    - +
    Description:Définit les protocoles SSL disponibles pour la fonction de diff --git a/docs/manual/mod/mod_ssl.xml.es b/docs/manual/mod/mod_ssl.xml.es index a5439ff9d4..481a856a7a 100644 --- a/docs/manual/mod/mod_ssl.xml.es +++ b/docs/manual/mod/mod_ssl.xml.es @@ -1,7 +1,7 @@ - + diff --git a/docs/manual/mod/mod_ssl.xml.fr b/docs/manual/mod/mod_ssl.xml.fr index adf38bd238..10de66ddad 100644 --- a/docs/manual/mod/mod_ssl.xml.fr +++ b/docs/manual/mod/mod_ssl.xml.fr @@ -1,7 +1,7 @@ - + diff --git a/docs/manual/mod/mod_ssl.xml.meta b/docs/manual/mod/mod_ssl.xml.meta index d50eb9de39..194507ef07 100644 --- a/docs/manual/mod/mod_ssl.xml.meta +++ b/docs/manual/mod/mod_ssl.xml.meta @@ -9,6 +9,6 @@ en es - fr + fr diff --git a/docs/manual/mod/mod_ssl_ct.html.en.utf8 b/docs/manual/mod/mod_ssl_ct.html.en.utf8 index b775ebf65d..0c52613e6e 100644 --- a/docs/manual/mod/mod_ssl_ct.html.en.utf8 +++ b/docs/manual/mod/mod_ssl_ct.html.en.utf8 @@ -31,7 +31,7 @@ - +
    Description:Implementation of Certificate Transparency (RFC 6962)
    Status:Extension
    Status:Deprecated
    Module Identifier:ssl_ct_module
    Source File:mod_ssl_ct.c

    Summary

    @@ -304,7 +304,7 @@ testing.

    Syntax:CTAuditStorage directory
    Default:none
    Context:server config
    Status:Extension
    Status:Deprecated
    Module:mod_ssl_ct

    The CTAuditStorage directive sets the name of a @@ -330,7 +330,7 @@ testing.

    Syntax:CTLogClient executable
    Default:none
    Context:server config
    Status:Extension
    Status:Deprecated
    Module:mod_ssl_ct

    executable is the full path to the log client tool, which is @@ -354,7 +354,7 @@ testing.

    Syntax:CTLogConfigDB filename
    Default:none
    Context:server config
    Status:Extension
    Status:Deprecated
    Module:mod_ssl_ct

    The CTLogConfigDB directive sets the name of a database @@ -374,7 +374,7 @@ refreshed

    Syntax:CTMaxSCTAge num-seconds
    Default:1 day
    Context:server config
    Status:Extension
    Status:Deprecated
    Module:mod_ssl_ct

    Server certificates with SCTs which are older than this maximum age will @@ -392,7 +392,7 @@ refreshed

    Syntax:CTProxyAwareness oblivious|aware|require
    Default:aware
    Context:server config, virtual host
    Status:Extension
    Status:Deprecated
    Module:mod_ssl_ct

    This directive controls awareness and checks for valid SCTs for a @@ -423,7 +423,7 @@ refreshed

    Syntax:CTSCTStorage directory
    Default:none
    Context:server config
    Status:Extension
    Status:Deprecated
    Module:mod_ssl_ct

    The CTSCTStorage directive sets the name of a @@ -448,7 +448,7 @@ ServerHello

    Syntax:CTServerHelloSCTLimit limit
    Default:100
    Context:server config
    Status:Extension
    Status:Deprecated
    Module:mod_ssl_ct

    This directive can be used to limit the number of SCTs which can be @@ -471,7 +471,7 @@ ServerHello

    Default:none
    Context:server config
    Status:Extension
    Status:Deprecated
    Module:mod_ssl_ct

    This directive is used to configure information about a particular log. @@ -537,7 +537,7 @@ about the fields which can be configured with this directive.

    Syntax:CTStaticSCTs certificate-pem-file sct-directory
    Default:none
    Context:server config
    Status:Extension
    Status:Deprecated
    Module:mod_ssl_ct

    This directive is used to statically define one or more SCTs corresponding diff --git a/docs/manual/mod/module-dict.html.en.utf8 b/docs/manual/mod/module-dict.html.en.utf8 index 9e81b61a43..90f1e9f159 100644 --- a/docs/manual/mod/module-dict.html.en.utf8 +++ b/docs/manual/mod/module-dict.html.en.utf8 @@ -82,6 +82,13 @@ if you try to use it. The module is being documented for completeness, and is not necessarily supported. +

    Deprecated
    + +
    A module with "Deprecated" status is still available and + functional, but its use is discouraged. The module may be + removed in the next minor release. Check the module's documentation for + recommended replacements or migration paths.
    +
    External
    Modules which are not included with the base Apache diff --git a/docs/manual/mod/module-dict.html.ja.utf8 b/docs/manual/mod/module-dict.html.ja.utf8 index 35a1796aa5..1d10550079 100644 --- a/docs/manual/mod/module-dict.html.ja.utf8 +++ b/docs/manual/mod/module-dict.html.ja.utf8 @@ -29,6 +29,10 @@  ko  |  tr 

    +
    この日本語訳はすでに古くなっている + 可能性があります。 + 最近更新された内容を見るには英語版をご覧下さい。 +

    この文書は Apache の各 モジュール を説明するために 使われている用語を説明します。

    diff --git a/docs/manual/mod/module-dict.html.ko.euc-kr b/docs/manual/mod/module-dict.html.ko.euc-kr index 511da1378f..9756ae6afd 100644 --- a/docs/manual/mod/module-dict.html.ko.euc-kr +++ b/docs/manual/mod/module-dict.html.ko.euc-kr @@ -29,6 +29,8 @@  ko  |  tr 

    +
    ÀÌ ¹®¼­´Â ÃÖ½ÅÆÇ ¹ø¿ªÀÌ ¾Æ´Õ´Ï´Ù. + ÃÖ±Ù¿¡ º¯°æµÈ ³»¿ëÀº ¿µ¾î ¹®¼­¸¦ Âü°íÇϼ¼¿ä.

    ÀÌ ¹®¼­´Â ¾ÆÆÄÄ¡ ¸ðµâÀ» ¼³¸íÇϱâÀ§ÇØ »ç¿ëÇÑ ¿ë¾î¸¦ ¼³¸íÇÑ´Ù.

    diff --git a/docs/manual/mod/module-dict.html.tr.utf8 b/docs/manual/mod/module-dict.html.tr.utf8 index cd6c3cae84..5787f3a4df 100644 --- a/docs/manual/mod/module-dict.html.tr.utf8 +++ b/docs/manual/mod/module-dict.html.tr.utf8 @@ -29,6 +29,7 @@  ko  |  tr 

    +
    Bu çeviri güncel olmayabilir. Son değişiklikler için İngilizce sürüm geçerlidir.

    Bu belgede Apache modüllerini tanımlarken kullanılan terimler açıklanmıştır.

    diff --git a/docs/manual/mod/motorz.html.en.utf8 b/docs/manual/mod/motorz.html.en.utf8 index c02367afc7..150db6abd2 100644 --- a/docs/manual/mod/motorz.html.en.utf8 +++ b/docs/manual/mod/motorz.html.en.utf8 @@ -238,9 +238,11 @@ built on the APR pollset and thread pool especially suited as a reverse proxyThe PollersPerChild directive sets the number of poller threads created in each child process. Each poller owns its own pollset, timer ring and connection-recycle list, and handles a shard of - the child's connections, so adding pollers raises the rate at which a - single child can accept connections and dispatch I/O events and timer - expiries.

    + the child's connections. Because each poller thread independently + accepts connections and dispatches ready I/O events and timer + expiries to the worker pool, adding pollers raises the rate at which a + single child process can handle these operations in parallel rather than + serializing them on one poll thread.

    A value of 0 (the default) means auto: the number of pollers is derived from the number of online CPUs, capped at a built-in diff --git a/docs/manual/mod/overrides.html.en.utf8 b/docs/manual/mod/overrides.html.en.utf8 index 3a7cdb25cd..012a28e4e1 100644 --- a/docs/manual/mod/overrides.html.en.utf8 +++ b/docs/manual/mod/overrides.html.en.utf8 @@ -485,23 +485,25 @@ for Client Auth

    SSLCACertificatePathmod_ssl
    Directory of PEM-encoded CA Certificates for Client Auth
    SSLCipherSuitemod_ssl
    Cipher Suite available for negotiation in SSL +
    SSLCACertificateURImod_ssl
    Server CA certificate store for Client Authentication
    SSLCipherSuitemod_ssl
    Cipher Suite available for negotiation in SSL handshake
    SSLRenegBufferSizemod_ssl
    Set the size for the SSL renegotiation buffer
    SSLRequiremod_ssl
    Allow access only when an arbitrarily complex +
    SSLRenegBufferSizemod_ssl
    Set the size for the SSL renegotiation buffer
    SSLRequiremod_ssl
    Allow access only when an arbitrarily complex boolean expression is true
    SSLRequireSSLmod_ssl
    Deny access when SSL is not used for the +
    SSLRequireSSLmod_ssl
    Deny access when SSL is not used for the HTTP request
    SSLUserNamemod_ssl
    Variable name to determine user name
    SSLVerifyClientmod_ssl
    Type of Client Certificate verification
    SSLVerifyDepthmod_ssl
    Maximum depth of CA Certificates in Client +
    SSLUserNamemod_ssl
    Variable name to determine user name
    SSLVerifyClientmod_ssl
    Type of Client Certificate verification
    SSLVerifyDepthmod_ssl
    Maximum depth of CA Certificates in Client Certificate verification
    top

    FileInfo

    diff --git a/docs/manual/mod/quickreference.html.de b/docs/manual/mod/quickreference.html.de index cc5b0013d6..1510b4683d 100644 --- a/docs/manual/mod/quickreference.html.de +++ b/docs/manual/mod/quickreference.html.de @@ -127,7 +127,7 @@ type

    AliasPreservePath OFF|ON OFF svdB
    Map the full path after the alias in a location.
    Allow from all|host|env=[!]env-variable -[host|env=[!]env-variable] ...dhE
    Controls which hosts can access an area of the +[host|env=[!]env-variable] ...dhD
    Controls which hosts can access an area of the server
    AllowCONNECT port[-port] [port[-port]] ... | None 443 563 svE
    Ports that are allowed to CONNECT through the @@ -393,20 +393,20 @@ module
    CryptoIV value none svdhE
    IV (Initialization Vector) to be used by the crypto filter
    CryptoKey value none svdhE
    Key to be used by the crypto filter
    CryptoSize integer 131072 svdhE
    Maximum size in bytes to buffer by the crypto filter
    CTAuditStorage directorysE
    Existing directory where data for off-line audit will be stored
    CTLogClient executablesE
    Location of certificate-transparency log client tool
    CTLogConfigDB filenamesE
    Log configuration database supporting dynamic updates
    CTMaxSCTAge num-secondssE
    Maximum age of SCT obtained from a log, before it will be +
    CTAuditStorage directorysD
    Existing directory where data for off-line audit will be stored
    CTLogClient executablesD
    Location of certificate-transparency log client tool
    CTLogConfigDB filenamesD
    Log configuration database supporting dynamic updates
    CTMaxSCTAge num-secondssD
    Maximum age of SCT obtained from a log, before it will be refreshed
    CTProxyAwareness oblivious|aware|requiresvE
    Level of CT awareness and enforcement for a proxy +
    CTProxyAwareness oblivious|aware|requiresvD
    Level of CT awareness and enforcement for a proxy
    CTSCTStorage directorysE
    Existing directory where SCTs are managed
    CTServerHelloSCTLimit limitsE
    Limit on number of SCTs that can be returned in +
    CTSCTStorage directorysD
    Existing directory where SCTs are managed
    CTServerHelloSCTLimit limitsD
    Limit on number of SCTs that can be returned in ServerHello
    CTStaticLogConfig log-id|- public-key-file|- 1|0|- min-timestamp|- max-timestamp|- -log-URL|-sE
    Static configuration of information about a log
    CTStaticSCTs certificate-pem-file sct-directorysE
    Static configuration of one or more SCTs for a server certificate +log-URL|-sD
    Static configuration of information about a log
    CTStaticSCTs certificate-pem-file sct-directorysD
    Static configuration of one or more SCTs for a server certificate
    CustomLog file|pipe|provider format|nickname @@ -455,7 +455,7 @@ nicht auf andere Weise ermitteln kann.
    DeflateMemLevel value 9 svE
    How much memory should be used by zlib for compression
    DeflateWindowSize value 15 svE
    Zlib compression window size
    Deny from all|host|env=[!]env-variable -[host|env=[!]env-variable] ...dhE
    Controls which hosts are denied access to the +[host|env=[!]env-variable] ...dhD
    Controls which hosts are denied access to the server
    <Directory Verzeichnispfad> ... </Directory>svC
    Umschließt eine Gruppe von Direktiven, die nur auf @@ -476,7 +476,7 @@ a directory
    DirectorySlash On|Off|NotFound On svdhB
    Toggle trailing slash redirects on or off
    DocumentRoot Verzeichnis /usr/local/apache/h +svC
    Verzeichnis, welches den Haupt-Dokumentenbaum bildet, der im Web sichtbar ist.
    DTracePrivileges On|Off Off sX
    Determines whether the privileges required by dtrace are enabled.
    DTracePrivileges On|Off Off sD
    Determines whether the privileges required by dtrace are enabled.
    DumpIOInput On|Off Off sE
    Dump all input data to the error log
    DumpIOOutput On|Off Off sE
    Dump all output data to the error log
    <Else> ... </Else>svdhC
    Contains directives that apply only if the condition of a @@ -615,10 +615,10 @@ werden
    <IfVersion [[!]operator] version> ... </IfVersion>svdhE
    contains version dependent configuration
    ImapBase map|referer|URL http://servername/ svdhB
    Default base for imagemap files
    ImapDefault error|nocontent|map|referer|URL nocontent svdhB
    Default action when an imagemap is called with coordinates +
    ImapBase map|referer|URL http://servername/ svdhD
    Default base for imagemap files
    ImapDefault error|nocontent|map|referer|URL nocontent svdhD
    Default action when an imagemap is called with coordinates that are not explicitly mapped
    ImapMenu none|formatted|semiformatted|unformatted formatted svdhB
    Action if no coordinates are given when calling +
    ImapMenu none|formatted|semiformatted|unformatted formatted svdhD
    Action if no coordinates are given when calling an imagemap
    Include Dateiname|VerzeichnissvdC
    Fügt andere Konfigurationsdateien innerhalb der Server-Konfigurationsdatei ein
    MDDriveMode always|auto|manual auto sX
    former name of MDRenewMode.
    MDExternalAccountBinding key-id hmac-64 | none | file none sX
    Set the external account binding keyid and hmac values to use at CA
    MDHttpProxy urlsX
    Define a proxy for outgoing connections.
    MDInitialDelay duration 0s sX
    How long to delay the first certificate check.
    MDMatchNames all|servernames all sX
    Determines how DNS names are matched to vhosts
    MDMember hostnamesX
    Additional hostname for the managed domain.
    MDMembers auto|manual auto sX
    Control if the alias domain names are automatically added.
    MDMessageCmd path-to-cmd optional-argssX
    Handle events for Manage Domains
    MDMustStaple on|off off sX
    Control if new certificates carry the OCSP Must Staple flag.
    MDNotifyCmd path [ args ]sX
    Run a program when a Managed Domain is ready.
    MDomain dns-name [ other-dns-name... ] [auto|manual]sX
    Define list of domain names that belong to one group.
    <MDomainSet dns-name [ other-dns-name... ]>...</MDomainSet>sX
    Container for directives applied to the same managed domains.
    MDPortMap map1 [ map2 ] http:80 https:443 sX
    Map external to internal ports for domain ownership verification.
    MDPrivateKeys type [ params... ] RSA 2048 sX
    Set type and size of the private keys generated.
    MDProfile namesX
    Use a specific ACME profile from the CA
    MDProfileMandatory on|off off sX
    Control if an MDProfile is mandatory.
    MDRenewMode always|auto|manual auto sX
    Controls if certificates shall be renewed.
    MDRenewViaARI on|off on sX
    usage of the ACME ARI extension (rfc9773).
    MDRenewWindow duration 33% sX
    Control when a certificate will be renewed.
    MDRequireHttps off|temporary|permanent off sX
    Redirects http: traffic to https: for Managed Domains.
    MDRetryDelay duration 30s sX
    Time length for first retry, doubled on every consecutive error.
    MDRetryFailover number 13 sX
    The number of errors before a failover to another CA is triggered
    MDServerStatus on|off off sX
    Control if Managed Domain information is added to server-status.
    MDStapleOthers on|off on sX
    Enable stapling for certificates not managed by mod_md.
    MDStapling on|off off sX
    Enable stapling for all or a particular MDomain.
    MDStaplingKeepResponse duration 7d sX
    Controls when old responses should be removed.
    MDStaplingRenewWindow duration 33% sX
    Control when the stapling responses will be renewed.
    MDStoreDir path md sX
    Path on the local file system to store the Managed Domains data.
    MDStoreLocks on|off|duration off sX
    Configure locking of store for updates
    MDWarnWindow duration 10% sX
    Define the time window when you want to be warned about an expiring certificate.
    MemcacheConnTTL num[units] 15s svE
    Keepalive time for idle connections
    MergeSlashes ON|OFF ON svC
    Controls whether the server merges consecutive slashes in URLs. +
    MDHttpProxyCACertificateFile path-to-pem-file none sX
    Sets the root (CA) certificates to use for TLS connections to the http-proxy.
    MDInitialDelay duration 0s sX
    How long to delay the first certificate check.
    MDMatchNames all|servernames all sX
    Determines how DNS names are matched to vhosts
    MDMember hostnamesX
    Additional hostname for the managed domain.
    MDMembers auto|manual auto sX
    Control if the alias domain names are automatically added.
    MDMessageCmd path-to-cmd optional-argssX
    Handle events for Manage Domains
    MDMustStaple on|off off sX
    Control if new certificates carry the OCSP Must Staple flag.
    MDNotifyCmd path [ args ]sX
    Run a program when a Managed Domain is ready.
    MDomain dns-name [ other-dns-name... ] [auto|manual]sX
    Define list of domain names that belong to one group.
    <MDomainSet dns-name [ other-dns-name... ]>...</MDomainSet>sX
    Container for directives applied to the same managed domains.
    MDPortMap map1 [ map2 ] http:80 https:443 sX
    Map external to internal ports for domain ownership verification.
    MDPrivateKeys type [ params... ] RSA 2048 sX
    Set type and size of the private keys generated.
    MDProfile namesX
    Use a specific ACME profile from the CA
    MDProfileMandatory on|off off sX
    Control if an MDProfile is mandatory.
    MDRenewMode always|auto|manual auto sX
    Controls if certificates shall be renewed.
    MDRenewViaARI on|off on sX
    usage of the ACME ARI extension (rfc9773).
    MDRenewWindow duration 33% sX
    Control when a certificate will be renewed.
    MDRequireHttps off|temporary|permanent off sX
    Redirects http: traffic to https: for Managed Domains.
    MDRetryDelay duration 30s sX
    Time length for first retry, doubled on every consecutive error.
    MDRetryFailover number 13 sX
    The number of errors before a failover to another CA is triggered
    MDServerStatus on|off off sX
    Control if Managed Domain information is added to server-status.
    MDStapleOthers on|off on sX
    Enable stapling for certificates not managed by mod_md.
    MDStapling on|off off sX
    Enable stapling for all or a particular MDomain.
    MDStaplingKeepResponse duration 7d sX
    Controls when old responses should be removed.
    MDStaplingRenewWindow duration 33% sX
    Control when the stapling responses will be renewed.
    MDStoreDir path md sX
    Path on the local file system to store the Managed Domains data.
    MDStoreLocks on|off|duration off sX
    Configure locking of store for updates
    MDWarnWindow duration 10% sX
    Define the time window when you want to be warned about an expiring certificate.
    MemcacheConnTTL num[units] 15s svE
    Keepalive time for idle connections
    MergeSlashes ON|OFF ON svC
    Controls whether the server merges consecutive slashes in URLs.
    MergeTrailers [on|off] off svC
    Determines whether trailers are merged into headers
    MetaDir directory .web svdhE
    Name of the directory to find CERN-style meta information +
    MergeTrailers [on|off] off svC
    Determines whether trailers are merged into headers
    MetaDir directory .web svdhD
    Name of the directory to find CERN-style meta information files
    MetaFiles on|off off svdhE
    Activates CERN meta-file processing
    MetaSuffix suffix .meta svdhE
    File name suffix for the file containing CERN-style +
    MetaFiles on|off off svdhD
    Activates CERN meta-file processing
    MetaSuffix suffix .meta svdhD
    File name suffix for the file containing CERN-style meta information
    MimeMagicDecompression On|Off Off svE
    Enable decompression of compressed files for MIME type detection
    MimeMagicFile file-pathsvE
    Enable MIME-type determination based on file contents +
    MimeMagicDecompression On|Off Off svE
    Enable decompression of compressed files for MIME type detection
    MimeMagicFile file-pathsvE
    Enable MIME-type determination based on file contents using the specified magic file
    MimeOptions option [option] ...svdhB
    Configures mod_mime behavior
    MinSpareServers Anzahl 5 sM
    Minimale Anzahl der unbeschäftigten Kindprozesse des +
    MimeOptions option [option] ...svdhB
    Configures mod_mime behavior
    MinSpareServers Anzahl 5 sM
    Minimale Anzahl der unbeschäftigten Kindprozesse des Servers
    MinSpareThreads AnzahlsM
    Minimale Anzahl unbeschäftigter Threads, die zur +
    MinSpareThreads AnzahlsM
    Minimale Anzahl unbeschäftigter Threads, die zur Bedienung von Anfragespitzen zur Verfügung stehen
    MMapFile file-path [file-path] ...sX
    Map a list of files into memory at startup time
    ModemStandard V.21|V.26bis|V.32|V.34|V.92dX
    Modem standard to simulate
    ModMimeUsePathInfo On|Off Off dB
    Tells mod_mime to treat path_info +
    MMapFile file-path [file-path] ...sX
    Map a list of files into memory at startup time
    ModemStandard V.21|V.26bis|V.32|V.34|V.92dX
    Modem standard to simulate
    ModMimeUsePathInfo On|Off Off dB
    Tells mod_mime to treat path_info components as part of the filename
    MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers -[Handlers|Filters] NegotiatedOnly svdhB
    The types of files that will be included when searching for +
    MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers +[Handlers|Filters] NegotiatedOnly svdhB
    The types of files that will be included when searching for a matching file with MultiViews
    Mutex mechanism [default|mutex-name] ... [OmitPID] default sC
    Configures mutex mechanism and lock file directory for all +
    Mutex mechanism [default|mutex-name] ... [OmitPID] default sC
    Configures mutex mechanism and lock file directory for all or specified mutexes
    NameVirtualHost Adresse[:Port]sC
    Bestimmt eine IP-Adresse für den Betrieb namensbasierter +
    NameVirtualHost Adresse[:Port]sC
    Bestimmt eine IP-Adresse für den Betrieb namensbasierter virtueller Hosts
    NoProxy host [host] ...svE
    Hosts, domains, or networks that will be connected to +
    NoProxy host [host] ...svE
    Hosts, domains, or networks that will be connected to directly
    NWSSLTrustedCerts filename [filename] ...sB
    List of additional client certificates
    NWSSLUpgradeable [IP-address:]portnumbersB
    Allows a connection to be upgraded to an SSL connection upon request
    Options - [+|-]Option [[+|-]Option] ... All svdhC
    Definiert, welche Eigenschaften oder Funktionen in einem +
    NWSSLTrustedCerts filename [filename] ...sB
    List of additional client certificates
    NWSSLUpgradeable [IP-address:]portnumbersB
    Allows a connection to be upgraded to an SSL connection upon request
    Options + [+|-]Option [[+|-]Option] ... All svdhC
    Definiert, welche Eigenschaften oder Funktionen in einem bestimmten Verzeichnis verfügbar sind
    Order ordering Deny,Allow dhE
    Controls the default access state and the order in which +
    Order ordering Deny,Allow dhD
    Controls the default access state and the order in which Allow and Deny are evaluated.
    OutputSed sed-commanddhX
    Sed command for filtering response content
    PassEnv env-variable [env-variable] -...svdhB
    Passes environment variables from the shell
    PidFile Dateiname logs/httpd.pid sM
    Datei, in welcher der Server die Prozess-ID des Daemons +
    OutputSed sed-commanddhX
    Sed command for filtering response content
    PassEnv env-variable [env-variable] +...svdhB
    Passes environment variables from the shell
    PidFile Dateiname logs/httpd.pid sM
    Datei, in welcher der Server die Prozess-ID des Daemons ablegt
    PolicyConditional ignore|log|enforcesvdE
    Enable the conditional request policy.
    PolicyConditionalURL urlsvdE
    URL describing the conditional request policy.
    PolicyEnvironment variable log-value ignore-valuesvdE
    Override policies based on an environment variable.
    PolicyFilter on|offsvdE
    Enable or disable policies for the given URL space.
    PolicyKeepalive ignore|log|enforcesvdE
    Enable the keepalive policy.
    PolicyKeepaliveURL urlsvdE
    URL describing the keepalive policy.
    PolicyLength ignore|log|enforcesvdE
    Enable the content length policy.
    PolicyLengthURL urlsvdE
    URL describing the content length policy.
    PolicyMaxage ignore|log|enforce agesvdE
    Enable the caching minimum max-age policy.
    PolicyMaxageURL urlsvdE
    URL describing the caching minimum freshness lifetime policy.
    PolicyNocache ignore|log|enforcesvdE
    Enable the caching no-cache policy.
    PolicyNocacheURL urlsvdE
    URL describing the caching no-cache policy.
    PolicyType ignore|log|enforce type [ type [ ... ]]svdE
    Enable the content type policy.
    PolicyTypeURL urlsvdE
    URL describing the content type policy.
    PolicyValidation ignore|log|enforcesvdE
    Enable the validation policy.
    PolicyValidationURL urlsvdE
    URL describing the content type policy.
    PolicyVary ignore|log|enforce header [ header [ ... ]]svdE
    Enable the Vary policy.
    PolicyVaryURL urlsvdE
    URL describing the content type policy.
    PolicyVersion ignore|log|enforce HTTP/0.9|HTTP/1.0|HTTP/1.1svdE
    Enable the version policy.
    PolicyVersionURL urlsvdE
    URL describing the minimum request HTTP version policy.
    PollersPerChild number 0 sM
    Number of poll threads per child process
    PrivilegesMode FAST|SECURE|SELECTIVE FAST svdX
    Trade off processing speed and efficiency vs security against +
    PolicyConditional ignore|log|enforcesvdE
    Enable the conditional request policy.
    PolicyConditionalURL urlsvdE
    URL describing the conditional request policy.
    PolicyEnvironment variable log-value ignore-valuesvdE
    Override policies based on an environment variable.
    PolicyFilter on|offsvdE
    Enable or disable policies for the given URL space.
    PolicyKeepalive ignore|log|enforcesvdE
    Enable the keepalive policy.
    PolicyKeepaliveURL urlsvdE
    URL describing the keepalive policy.
    PolicyLength ignore|log|enforcesvdE
    Enable the content length policy.
    PolicyLengthURL urlsvdE
    URL describing the content length policy.
    PolicyMaxage ignore|log|enforce agesvdE
    Enable the caching minimum max-age policy.
    PolicyMaxageURL urlsvdE
    URL describing the caching minimum freshness lifetime policy.
    PolicyNocache ignore|log|enforcesvdE
    Enable the caching no-cache policy.
    PolicyNocacheURL urlsvdE
    URL describing the caching no-cache policy.
    PolicyType ignore|log|enforce type [ type [ ... ]]svdE
    Enable the content type policy.
    PolicyTypeURL urlsvdE
    URL describing the content type policy.
    PolicyValidation ignore|log|enforcesvdE
    Enable the validation policy.
    PolicyValidationURL urlsvdE
    URL describing the content type policy.
    PolicyVary ignore|log|enforce header [ header [ ... ]]svdE
    Enable the Vary policy.
    PolicyVaryURL urlsvdE
    URL describing the content type policy.
    PolicyVersion ignore|log|enforce HTTP/0.9|HTTP/1.0|HTTP/1.1svdE
    Enable the version policy.
    PolicyVersionURL urlsvdE
    URL describing the minimum request HTTP version policy.
    PollersPerChild number 0 sM
    Number of poll threads per child process
    PrivilegesMode FAST|SECURE|SELECTIVE FAST svdD
    Trade off processing speed and efficiency vs security against malicious privileges-aware code.
    Protocol protocolsvC
    Protocol for a listening socket
    ProtocolEcho On|Off Off svX
    Turn the echo server on or off
    Protocols protocol ... http/1.1 svC
    Protocols available for a server/virtual host
    ProtocolsHonorOrder On|Off On svC
    Determines if order of Protocols determines precedence during negotiation
    <Proxy wildcard-url> ...</Proxy>svE
    Container for directives applied to proxied resources
    Proxy100Continue Off|On On svdE
    Forward 100-continue expectation to the origin server
    ProxyAddHeaders Off|On On svdE
    Add proxy information in X-Forwarded-* headers
    ProxyAsyncDelay time[s]svdE
    Time to poll synchronously before handing a connection to the +
    Protocol protocolsvC
    Protocol for a listening socket
    ProtocolEcho On|Off Off svX
    Turn the echo server on or off
    Protocols protocol ... http/1.1 svC
    Protocols available for a server/virtual host
    ProtocolsHonorOrder On|Off On svC
    Determines if order of Protocols determines precedence during negotiation
    <Proxy wildcard-url> ...</Proxy>svE
    Container for directives applied to proxied resources
    Proxy100Continue Off|On On svdE
    Forward 100-continue expectation to the origin server
    ProxyAddHeaders Off|On On svdE
    Add proxy information in X-Forwarded-* headers
    ProxyAsyncDelay time[s]svdE
    Time to poll synchronously before handing a connection to the MPM for asynchronous processing
    ProxyAsyncIdleTimeout time[s]svdE
    Inactivity timeout for asynchronous proxy connections
    ProxyBadHeader IsError|Ignore|StartBody IsError svE
    Determines how to handle bad header lines in a +
    ProxyAsyncIdleTimeout time[s]svdE
    Inactivity timeout for asynchronous proxy connections
    ProxyBadHeader IsError|Ignore|StartBody IsError svE
    Determines how to handle bad header lines in a response
    ProxyBeaconAddress address:portsvE
    Address of the reverse proxy to which a backend sends its +
    ProxyBeaconAddress address:portsvE
    Address of the reverse proxy to which a backend sends its announcements
    ProxyBeaconAdvertise urlsvE
    The routable URL a backend announces to the reverse proxy
    ProxyBeaconBalancer namesvE
    Name of the balancer that announced backends are added to
    ProxyBeaconInterval interval 5 svE
    How often a backend publishes its announcement
    ProxyBeaconListen [address][:port]svE
    Address on which the reverse proxy receives backend +
    ProxyBeaconAdvertise urlsvE
    The routable URL a backend announces to the reverse proxy
    ProxyBeaconBalancer namesvE
    Name of the balancer that announced backends are added to
    ProxyBeaconInterval interval 5 svE
    How often a backend publishes its announcement
    ProxyBeaconListen [address][:port]svE
    Address on which the reverse proxy receives backend beacons
    ProxyBeaconMaxSkew intervalsvE
    Maximum allowed age of a signed announcement
    ProxyBeaconSecret secretsvE
    Pre-shared secret used to authenticate announcements
    ProxyBeaconTimeout interval 0 svE
    How long the proxy waits, without an announcement, before a backend +
    ProxyBeaconMaxSkew intervalsvE
    Maximum allowed age of a signed announcement
    ProxyBeaconSecret secretsvE
    Pre-shared secret used to authenticate announcements
    ProxyBeaconTimeout interval 0 svE
    How long the proxy waits, without an announcement, before a backend is taken out of rotation
    ProxyBlock *|hostname|partial-hostname [hostname|partial-hostname]...svE
    Disallow proxy requests to certain hosts
    ProxyDomain DomainsvE
    Default domain name for proxied requests
    ProxyErrorOverride Off|On [code ...] Off svdE
    Override error pages for proxied content
    ProxyExpressDBMFile pathnamesvE
    Pathname to DBM file.
    ProxyExpressDBMType type default svE
    DBM type of file.
    ProxyExpressEnable on|off off svE
    Enable the module functionality.
    ProxyFCGIBackendType FPM|GENERIC FPM svdhE
    Specify the type of backend FastCGI application
    ProxyFCGISetEnvIf conditional-expression +
    ProxyBlock *|hostname|partial-hostname [hostname|partial-hostname]...svE
    Disallow proxy requests to certain hosts
    ProxyDomain DomainsvE
    Default domain name for proxied requests
    ProxyErrorOverride Off|On [code ...] Off svdE
    Override error pages for proxied content
    ProxyExpressDBMFile pathnamesvE
    Pathname to DBM file.
    ProxyExpressDBMType type default svE
    DBM type of file.
    ProxyExpressEnable on|off off svE
    Enable the module functionality.
    ProxyFCGIBackendType FPM|GENERIC FPM svdhE
    Specify the type of backend FastCGI application
    ProxyFCGISetEnvIf conditional-expression [!]environment-variable-name - [value-expression]svdhE
    Allow variables sent to FastCGI servers to be fixed up
    ProxyFtpDirCharset character_set ISO-8859-1 svdE
    Define the character set for proxied FTP listings
    ProxyFtpEscapeWildcards on|off on svdE
    Whether wildcards in requested filenames are escaped when sent to the FTP server
    ProxyFtpListOnWildcard on|off on svdE
    Whether wildcards in requested filenames trigger a file listing
    ProxyHCExpr name {ap_expr expression}svE
    Creates a named condition expression to use to determine health of the backend based on its response
    ProxyHCTemplate name parameter=setting [...]svE
    Creates a named template for setting various health check parameters
    ProxyHCTPsize size 16 sE
    Sets the total server-wide size of the threadpool used for the health check workers
    ProxyHTMLBufSize bytes 8192 svdB
    Sets the buffer size increment for buffering inline scripts and + [value-expression]svdhE
    Allow variables sent to FastCGI servers to be fixed up
    ProxyFtpDirCharset character_set ISO-8859-1 svdE
    Define the character set for proxied FTP listings
    ProxyFtpEscapeWildcards on|off on svdE
    Whether wildcards in requested filenames are escaped when sent to the FTP server
    ProxyFtpListOnWildcard on|off on svdE
    Whether wildcards in requested filenames trigger a file listing
    ProxyHCExpr name {ap_expr expression}svE
    Creates a named condition expression to use to determine health of the backend based on its response
    ProxyHCTemplate name parameter=setting [...]svE
    Creates a named template for setting various health check parameters
    ProxyHCTPsize size 16 sE
    Sets the total server-wide size of the threadpool used for the health check workers
    ProxyHTMLBufSize bytes 8192 svdB
    Sets the buffer size increment for buffering inline scripts and stylesheets.
    ProxyHTMLCharsetOut Charset | * UTF-8 svdB
    Specify a charset for mod_proxy_html output.
    ProxyHTMLDocType HTML|XHTML [Legacy]
    OR +
    ProxyHTMLCharsetOut Charset | * UTF-8 svdB
    Specify a charset for mod_proxy_html output.
    ProxyHTMLDocType HTML|XHTML [Legacy]
    OR
    ProxyHTMLDocType fpi [SGML|XML]
    OR
    ProxyHTMLDocType html5
    OR -
    ProxyHTMLDocType auto
    auto (2.5/trunk ver +svdB
    Sets an HTML or XHTML document type declaration.
    ProxyHTMLEnable On|Off Off svdB
    Turns the proxy_html filter on or off.
    ProxyHTMLEvents attribute [attribute ...]svdB
    Specify attributes to treat as scripting events.
    ProxyHTMLExtended On|Off Off svdB
    Determines whether to fix links in inline scripts, stylesheets, +
    ProxyHTMLDocType auto
    auto (2.5/trunk ver +svdB
    Sets an HTML or XHTML document type declaration.
    ProxyHTMLEnable On|Off Off svdB
    Turns the proxy_html filter on or off.
    ProxyHTMLEvents attribute [attribute ...]svdB
    Specify attributes to treat as scripting events.
    ProxyHTMLExtended On|Off Off svdB
    Determines whether to fix links in inline scripts, stylesheets, and scripting events.
    ProxyHTMLFixups [lowercase] [dospath] [reset] none svdB
    Fixes for simple HTML errors.
    ProxyHTMLInterp On|Off Off svdB
    Enables per-request interpolation of +
    ProxyHTMLFixups [lowercase] [dospath] [reset] none svdB
    Fixes for simple HTML errors.
    ProxyHTMLInterp On|Off Off svdB
    Enables per-request interpolation of ProxyHTMLURLMap rules.
    ProxyHTMLLinks element attribute [attribute2 ...]svdB
    Specify HTML elements that have URL attributes to be rewritten.
    ProxyHTMLMeta On|Off Off svdB
    Turns on or off extra pre-parsing of metadata in HTML +
    ProxyHTMLLinks element attribute [attribute2 ...]svdB
    Specify HTML elements that have URL attributes to be rewritten.
    ProxyHTMLMeta On|Off Off svdB
    Turns on or off extra pre-parsing of metadata in HTML <head> sections.
    ProxyHTMLStripComments On|Off Off svdB
    Determines whether to strip HTML comments.
    ProxyHTMLURLMap from-pattern to-pattern [flags] [cond]svdB
    Defines a rule to rewrite HTML links
    ProxyIOBufferSize bytes 8192 svE
    Determine size of internal data throughput buffer
    <ProxyMatch regex> ...</ProxyMatch>svE
    Container for directives applied to regular-expression-matched +
    ProxyHTMLStripComments On|Off Off svdB
    Determines whether to strip HTML comments.
    ProxyHTMLURLMap from-pattern to-pattern [flags] [cond]svdB
    Defines a rule to rewrite HTML links
    ProxyIOBufferSize bytes 8192 svE
    Determine size of internal data throughput buffer
    <ProxyMatch regex> ...</ProxyMatch>svE
    Container for directives applied to regular-expression-matched proxied resources
    ProxyMaxForwards number -1 svE
    Maximum number of proxies that a request can be forwarded +
    ProxyMaxForwards number -1 svE
    Maximum number of proxies that a request can be forwarded through
    ProxyPass [path] !|url [key=value - [key=value ...]] [nocanon] [interpolate] [noquery]svdE
    Maps remote servers into the local server URL-space
    ProxyPassInherit On|Off On svE
    Inherit ProxyPass directives defined from the main server
    ProxyPassInterpolateEnv On|Off Off svdE
    Enable Environment Variable interpolation in Reverse Proxy configurations
    ProxyPassMatch [regex] !|url [key=value - [key=value ...]]svdE
    Maps remote servers into the local server URL-space using regular expressions
    ProxyPassReverse [path] url -[interpolate]svdE
    Adjusts the URL in HTTP response headers sent from a reverse +
    ProxyPass [path] !|url [key=value + [key=value ...]] [nocanon] [interpolate] [noquery]svdE
    Maps remote servers into the local server URL-space
    ProxyPassInherit On|Off On svE
    Inherit ProxyPass directives defined from the main server
    ProxyPassInterpolateEnv On|Off Off svdE
    Enable Environment Variable interpolation in Reverse Proxy configurations
    ProxyPassMatch [regex] !|url [key=value + [key=value ...]]svdE
    Maps remote servers into the local server URL-space using regular expressions
    ProxyPassReverse [path] url +[interpolate]svdE
    Adjusts the URL in HTTP response headers sent from a reverse proxied server
    ProxyPassReverseCookieDomain internal-domain -public-domain [interpolate]svdE
    Adjusts the Domain string in Set-Cookie headers from a reverse- +
    ProxyPassReverseCookieDomain internal-domain +public-domain [interpolate]svdE
    Adjusts the Domain string in Set-Cookie headers from a reverse- proxied server
    ProxyPassReverseCookiePath internal-path -public-path [interpolate]svdE
    Adjusts the Path string in Set-Cookie headers from a reverse- +
    ProxyPassReverseCookiePath internal-path +public-path [interpolate]svdE
    Adjusts the Path string in Set-Cookie headers from a reverse- proxied server
    ProxyPreserveHost On|Off Off svdE
    Use incoming Host HTTP request header for proxy +
    ProxyPreserveHost On|Off Off svdE
    Use incoming Host HTTP request header for proxy request
    ProxyReceiveBufferSize bytes 0 svE
    Network buffer size for proxied HTTP and FTP +
    ProxyReceiveBufferSize bytes 0 svE
    Network buffer size for proxied HTTP and FTP connections
    ProxyRemote match remote-server [username:password]svE
    Remote proxy used to handle certain requests
    ProxyRemoteMatch regex remote-server [username:password]svE
    Remote proxy used to handle requests matched by regular +
    ProxyRemote match remote-server [username:password]svE
    Remote proxy used to handle certain requests
    ProxyRemoteMatch regex remote-server [username:password]svE
    Remote proxy used to handle requests matched by regular expressions
    ProxyRequests On|Off Off svE
    Enables forward (standard) proxy requests
    ProxySCGIInternalRedirect On|Off|Headername On svdE
    Enable or disable internal redirect responses from the +
    ProxyRequests On|Off Off svE
    Enables forward (standard) proxy requests
    ProxySCGIInternalRedirect On|Off|Headername On svdE
    Enable or disable internal redirect responses from the backend
    ProxySCGISendfile On|Off|Headername Off svdE
    Enable evaluation of X-Sendfile pseudo response +
    ProxySCGISendfile On|Off|Headername Off svdE
    Enable evaluation of X-Sendfile pseudo response header
    ProxySet url key=value [key=value ...]svdE
    Set various Proxy balancer or member parameters
    ProxySourceAddress addresssvE
    Set local IP address for outgoing proxy connections
    ProxyStatus Off|On|Full Off svE
    Show Proxy LoadBalancer status in mod_status
    ProxyTimeout time-interval[s]svE
    Network timeout for proxied requests
    ProxyVia On|Off|Full|Block Off svE
    Information provided in the Via HTTP response +
    ProxySet url key=value [key=value ...]svdE
    Set various Proxy balancer or member parameters
    ProxySourceAddress addresssvE
    Set local IP address for outgoing proxy connections
    ProxyStatus Off|On|Full Off svE
    Show Proxy LoadBalancer status in mod_status
    ProxyTimeout time-interval[s]svE
    Network timeout for proxied requests
    ProxyVia On|Off|Full|Block Off svE
    Information provided in the Via HTTP response header for proxied requests
    ProxyWebsocketAsync ON|OFFsvE
    Instructs this module to try to create an asynchronous tunnel
    ProxyWebsocketAsyncDelay num[ms] 0 svE
    Sets the amount of time the tunnel waits synchronously for data
    ProxyWebsocketFallbackToProxyHttp On|Off On svE
    Instructs this module to let mod_proxy_http handle the request
    ProxyWebsocketIdleTimeout num[ms] 0 svE
    Sets the maximum amount of time to wait for data on the websockets tunnel
    QualifyRedirectURL On|Off Off svdC
    Controls whether the REDIRECT_URL environment variable is +
    ProxyWebsocketAsync ON|OFFsvD
    Instructs this module to try to create an asynchronous tunnel
    ProxyWebsocketAsyncDelay num[ms] 0 svD
    Sets the amount of time the tunnel waits synchronously for data
    ProxyWebsocketFallbackToProxyHttp On|Off On svD
    Instructs this module to let mod_proxy_http handle the request
    ProxyWebsocketIdleTimeout num[ms] 0 svD
    Sets the maximum amount of time to wait for data on the websockets tunnel
    QualifyRedirectURL On|Off Off svdC
    Controls whether the REDIRECT_URL environment variable is fully qualified
    ReadBufferSize bytes 8192 svdC
    Size of the buffers used to read data
    ReadmeName filenamesvdhB
    Name of the file that will be inserted at the end +
    ReadBufferSize bytes 8192 svdC
    Size of the buffers used to read data
    ReadmeName filenamesvdhB
    Name of the file that will be inserted at the end of the index listing
    ReceiveBufferSize bytes 0 sM
    TCP receive buffer size
    Redirect [status] [URL-path] -URLsvdhB
    Sends an external redirect asking the client to fetch +
    ReceiveBufferSize bytes 0 sM
    TCP receive buffer size
    Redirect [status] [URL-path] +URLsvdhB
    Sends an external redirect asking the client to fetch a different URL
    RedirectMatch [status] regex -URLsvdhB
    Sends an external redirect based on a regular expression match +
    RedirectMatch [status] regex +URLsvdhB
    Sends an external redirect based on a regular expression match of the current URL
    RedirectPermanent URL-path URLsvdhB
    Sends an external permanent redirect asking the client to fetch +
    RedirectPermanent URL-path URLsvdhB
    Sends an external permanent redirect asking the client to fetch a different URL
    RedirectRelative On|Off Off svdB
    Allows relative redirect targets.
    RedirectTemp URL-path URLsvdhB
    Sends an external temporary redirect asking the client to fetch +
    RedirectRelative On|Off Off svdB
    Allows relative redirect targets.
    RedirectTemp URL-path URLsvdhB
    Sends an external temporary redirect asking the client to fetch a different URL
    RedisConnPoolTTL num[units] 15s svE
    TTL used for the connection pool with the Redis server(s)
    RedisTimeout num[units] 5s svE
    R/W timeout used for the connection with the Redis server(s)
    ReflectorHeader inputheader [outputheader]svdhB
    Reflect an input header to the output headers
    RegexDefaultOptions [none] [+|-]option [[+|-]option] ... DOTALL DOLLAR_ENDON +sC
    Allow to configure global/default options for regexes
    RegisterHttpMethod method [method [...]]sC
    Register non-standard HTTP methods
    RemoteIPHeader header-fieldsvB
    Declare the header field which should be parsed for useragent IP addresses
    RemoteIPInternalProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPInternalProxyList filenamesvB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPProxiesHeader HeaderFieldNamesvB
    Declare the header field which will record all intermediate IP addresses
    RemoteIPProxyProtocol On|OffsvB
    Enable or disable PROXY protocol handling
    RemoteIPProxyProtocolExceptions host|range [host|range] [host|range]svB
    Disable processing of PROXY header for certain hosts or networks
    RemoteIPTrustedProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoteIPTrustedProxyList filenamesvB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoveCharset extension [extension] -...vdhB
    Removes any character set associations for a set of file +
    RedisConnPoolTTL num[units] 15s svE
    TTL used for the connection pool with the Redis server(s)
    RedisTimeout num[units] 5s svE
    R/W timeout used for the connection with the Redis server(s)
    ReflectorHeader inputheader [outputheader]svdhB
    Reflect an input header to the output headers
    RegexDefaultOptions [none] [+|-]option [[+|-]option] ... DOTALL DOLLAR_ENDON +sC
    Allow to configure global/default options for regexes
    RegisterHttpMethod method [method [...]]sC
    Register non-standard HTTP methods
    RemoteIPHeader header-fieldsvB
    Declare the header field which should be parsed for useragent IP addresses
    RemoteIPInternalProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPInternalProxyList filenamesvB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPProxiesHeader HeaderFieldNamesvB
    Declare the header field which will record all intermediate IP addresses
    RemoteIPProxyProtocol On|OffsvB
    Enable or disable PROXY protocol handling
    RemoteIPProxyProtocolExceptions host|range [host|range] [host|range]svB
    Disable processing of PROXY header for certain hosts or networks
    RemoteIPTrustedProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoteIPTrustedProxyList filenamesvB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoveCharset extension [extension] +...vdhB
    Removes any character set associations for a set of file extensions
    RemoveEncoding extension [extension] -...vdhB
    Removes any content encoding associations for a set of file +
    RemoveEncoding extension [extension] +...vdhB
    Removes any content encoding associations for a set of file extensions
    RemoveHandler extension [extension] -...vdhB
    Removes any handler associations for a set of file +
    RemoveHandler extension [extension] +...vdhB
    Removes any handler associations for a set of file extensions
    RemoveInputFilter extension [extension] -...vdhB
    Removes any input filter associations for a set of file +
    RemoveInputFilter extension [extension] +...vdhB
    Removes any input filter associations for a set of file extensions
    RemoveLanguage extension [extension] -...vdhB
    Removes any language associations for a set of file +
    RemoveLanguage extension [extension] +...vdhB
    Removes any language associations for a set of file extensions
    RemoveOutputFilter extension [extension] -...vdhB
    Removes any output filter associations for a set of file +
    RemoveOutputFilter extension [extension] +...vdhB
    Removes any output filter associations for a set of file extensions
    RemoveType extension [extension] -...vdhB
    Removes any content type associations for a set of file +
    RemoveType extension [extension] +...vdhB
    Removes any content type associations for a set of file extensions
    RequestHeader add|append|edit|edit*|merge|set|setifempty|unset +
    RequestHeader add|append|edit|edit*|merge|set|setifempty|unset header [[expr=]value [replacement] [early|env=[!]varname|expr=expression]] -svdhE
    Configure HTTP request headers
    RequestReadTimeout +svdhE
    Configure HTTP request headers
    RequestReadTimeout [handshake=timeout[-maxtimeout][,MinRate=rate] [header=timeout[-maxtimeout][,MinRate=rate] [body=timeout[-maxtimeout][,MinRate=rate] - handshake=0 header= +svE
    Set timeout values for completing the TLS handshake, receiving + handshake=0 header= +svE
    Set timeout values for completing the TLS handshake, receiving the request headers and/or body from client.
    Require [not] entity-name - [entity-name] ...dhB
    Tests whether an authenticated user is authorized by +
    Require [not] entity-name + [entity-name] ...dhB
    Tests whether an authenticated user is authorized by an authorization provider.
    <RequireAll> ... </RequireAll>dhB
    Enclose a group of authorization directives of which none +
    <RequireAll> ... </RequireAll>dhB
    Enclose a group of authorization directives of which none must fail and at least one must succeed for the enclosing directive to succeed.
    <RequireAny> ... </RequireAny>dhB
    Enclose a group of authorization directives of which one +
    <RequireAny> ... </RequireAny>dhB
    Enclose a group of authorization directives of which one must succeed for the enclosing directive to succeed.
    <RequireNone> ... </RequireNone>dhB
    Enclose a group of authorization directives of which none +
    <RequireNone> ... </RequireNone>dhB
    Enclose a group of authorization directives of which none must succeed for the enclosing directive to not fail.
    RewriteBase URL-pathdhE
    Sets the base URL for per-directory rewrites
    RewriteCond - TestString [!]CondPattern [flags]svdhE
    Defines a condition under which rewriting will take place +
    RewriteBase URL-pathdhE
    Sets the base URL for per-directory rewrites
    RewriteCond + TestString [!]CondPattern [flags]svdhE
    Defines a condition under which rewriting will take place
    RewriteEngine on|off off svdhE
    Enables or disables runtime rewriting engine
    RewriteMap MapName MapType:MapSource +
    RewriteEngine on|off off svdhE
    Enables or disables runtime rewriting engine
    RewriteMap MapName MapType:MapSource [MapTypeOptions] -svE
    Defines a mapping function for key-lookup
    RewriteOptions OptionssvdhE
    Sets some special options for the rewrite engine
    RewriteRule - [!]Pattern Substitution [flags]svdhE
    Defines rules for the rewriting engine
    RLimitCPU Sekunden|max [Sekunden|max]svdhC
    Begrenzt den CPU-Verbrauch von Prozessen, die von +svE
    Defines a mapping function for key-lookup
    RewriteOptions OptionssvdhE
    Sets some special options for the rewrite engine
    RewriteRule + [!]Pattern Substitution [flags]svdhE
    Defines rules for the rewriting engine
    RLimitCPU Sekunden|max [Sekunden|max]svdhC
    Begrenzt den CPU-Verbrauch von Prozessen, die von Apache-Kindprozessen gestartet wurden
    RLimitMEM Bytes|max [Bytes|max]svdhC
    Begrenzt den Speicherverbrauch von Prozessen, die von +
    RLimitMEM Bytes|max [Bytes|max]svdhC
    Begrenzt den Speicherverbrauch von Prozessen, die von Apache-Kindprozessen gestartet wurden
    RLimitNPROC Zahl|max [Zahl|max]svdhC
    Begrenzt die Anzahl der Prozesse, die von Prozessen gestartet +
    RLimitNPROC Zahl|max [Zahl|max]svdhC
    Begrenzt die Anzahl der Prozesse, die von Prozessen gestartet werden können, der ihrerseits von Apache-Kinprozessen gestartet wurden
    Satisfy Any|All All dhE
    Interaction between host-level access control and +
    Satisfy Any|All All dhD
    Interaction between host-level access control and user authentication
    ScoreBoardFile Dateipfad logs/apache_status sM
    Ablageort der Datei, die zur Speicherung von Daten zur +
    ScoreBoardFile Dateipfad logs/apache_status sM
    Ablageort der Datei, die zur Speicherung von Daten zur Koordinierung der Kindprozesse verwendet wird
    Script Methode CGI-SkriptsvdB
    Aktiviert ein CGI-Skript für eine bestimmte +
    Script Methode CGI-SkriptsvdB
    Aktiviert ein CGI-Skript für eine bestimmte Anfragemethode.
    ScriptAlias [URL-path] -file-path|directory-pathsvdB
    Maps a URL to a filesystem location and designates the +
    ScriptAlias [URL-path] +file-path|directory-pathsvdB
    Maps a URL to a filesystem location and designates the target as a CGI script
    ScriptAliasMatch regex -file-path|directory-pathsvB
    Maps a URL to a filesystem location using a regular expression +
    ScriptAliasMatch regex +file-path|directory-pathsvB
    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 svdhC
    Methode zur Ermittlung des Interpreters von +
    ScriptInterpreterSource Registry|Registry-Strict|Script Script svdhC
    Methode zur Ermittlung des Interpreters von CGI-Skripten
    ScriptLog file-pathsvB
    Location of the CGI script error logfile
    ScriptLogBuffer bytes 1024 svB
    Maximum amount of PUT or POST requests that will be recorded +
    ScriptLog file-pathsvB
    Location of the CGI script error logfile
    ScriptLogBuffer bytes 1024 svB
    Maximum amount of PUT or POST requests that will be recorded in the scriptlog
    ScriptLogLength bytes 10385760 svB
    Size limit of the CGI script logfile
    ScriptSock file-path cgisock sB
    The filename prefix of the socket to use for communication with +
    ScriptLogLength bytes 10385760 svB
    Size limit of the CGI script logfile
    ScriptSock file-path cgisock sB
    The filename prefix of the socket to use for communication with the cgi daemon
    SecureListen [IP-address:]portnumber -Certificate-Name [MUTUAL]sB
    Enables SSL encryption for the specified port
    SeeRequestTail On|Off Off sC
    Determine if mod_status displays the first 63 characters +
    SecureListen [IP-address:]portnumber +Certificate-Name [MUTUAL]sB
    Enables SSL encryption for the specified port
    SeeRequestTail On|Off Off sC
    Determine if mod_status displays the first 63 characters of a request or the last 63, assuming the request itself is greater than 63 chars.
    SendBufferSize Bytes 0 sM
    Größe des TCP-Puffers
    ServerAdmin E-Mail-Adresse|URLsvC
    E-Mail-Adresse, die der Server in Fehlermeldungen einfügt, +
    SendBufferSize Bytes 0 sM
    Größe des TCP-Puffers
    ServerAdmin E-Mail-Adresse|URLsvC
    E-Mail-Adresse, die der Server in Fehlermeldungen einfügt, welche an den Client gesendet werden
    ServerAlias Hostname [Hostname] ...vC
    Alternativer Name für einen Host, der verwendet wird, wenn +
    ServerAlias Hostname [Hostname] ...vC
    Alternativer Name für einen Host, der verwendet wird, wenn Anfragen einem namensbasierten virtuellen Host zugeordnet werden
    ServerLimit AnzahlsM
    Obergrenze für die konfigurierbare Anzahl von +
    ServerLimit AnzahlsM
    Obergrenze für die konfigurierbare Anzahl von Prozessen
    ServerName -voll-qualifizierter-Domainname[:port]svC
    Rechnername und Port, die der Server dazu verwendet, sich +
    ServerName +voll-qualifizierter-Domainname[:port]svC
    Rechnername und Port, die der Server dazu verwendet, sich selbst zu identifizieren
    ServerPath URL-PfadvC
    Veralteter URL-Pfad für einen namensbasierten +
    ServerPath URL-PfadvC
    Veralteter URL-Pfad für einen namensbasierten virtuellen Host, auf den von einem inkompatiblen Browser zugegriffen wird
    ServerRoot Verzeichnis /usr/local/apache sC
    Basisverzeichnis der Serverinstallation
    ServerSignature On|Off|EMail Off svdhC
    Konfiguriert die Fußzeile von servergenerierten +
    ServerRoot Verzeichnis /usr/local/apache sC
    Basisverzeichnis der Serverinstallation
    ServerSignature On|Off|EMail Off svdhC
    Konfiguriert die Fußzeile von servergenerierten Dokumenten
    ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full Full sC
    Konfiguriert den HTTP-Response-Header +
    ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full Full sC
    Konfiguriert den HTTP-Response-Header Server
    Session On|Off Off svdhE
    Enables a session for the current directory or location
    SessionCookieMaxAge On|Off On svdhE
    Control whether session cookies have Max-Age transmitted to the client
    SessionCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session
    SessionCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session
    SessionCookieRemove On|Off Off svdhE
    Control for whether session cookies should be removed from incoming HTTP headers
    SessionCryptoCipher name aes256 svdhX
    The crypto cipher to be used to encrypt the session
    SessionCryptoDriver name [param[=value]]sX
    The crypto driver to be used to encrypt the session
    SessionCryptoPassphrase secret [ secret ... ] svdhX
    The key used to encrypt the session
    SessionCryptoPassphraseFile filenamesvdX
    File containing keys used to encrypt the session
    SessionDBDCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session ID
    SessionDBDCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session ID
    SessionDBDCookieRemove On|Off On svdhE
    Control for whether session ID cookies should be removed from incoming HTTP headers
    SessionDBDDeleteLabel label deletesession svdhE
    The SQL query to use to remove sessions from the database
    SessionDBDInsertLabel label insertsession svdhE
    The SQL query to use to insert sessions into the database
    SessionDBDPerUser On|Off Off svdhE
    Enable a per user session
    SessionDBDSelectLabel label selectsession svdhE
    The SQL query to use to select sessions from the database
    SessionDBDUpdateLabel label updatesession svdhE
    The SQL query to use to update existing sessions in the database
    SessionEnv On|Off Off svdhE
    Control whether the contents of the session are written to the +
    Session On|Off Off svdhE
    Enables a session for the current directory or location
    SessionCookieMaxAge On|Off On svdhE
    Control whether session cookies have Max-Age transmitted to the client
    SessionCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session
    SessionCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session
    SessionCookieRemove On|Off Off svdhE
    Control for whether session cookies should be removed from incoming HTTP headers
    SessionCryptoCipher name aes256 svdhX
    The crypto cipher to be used to encrypt the session
    SessionCryptoDriver name [param[=value]]sX
    The crypto driver to be used to encrypt the session
    SessionCryptoPassphrase secret [ secret ... ] svdhX
    The key used to encrypt the session
    SessionCryptoPassphraseFile filenamesvdX
    File containing keys used to encrypt the session
    SessionDBDCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session ID
    SessionDBDCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session ID
    SessionDBDCookieRemove On|Off On svdhE
    Control for whether session ID cookies should be removed from incoming HTTP headers
    SessionDBDDeleteLabel label deletesession svdhE
    The SQL query to use to remove sessions from the database
    SessionDBDInsertLabel label insertsession svdhE
    The SQL query to use to insert sessions into the database
    SessionDBDPerUser On|Off Off svdhE
    Enable a per user session
    SessionDBDSelectLabel label selectsession svdhE
    The SQL query to use to select sessions from the database
    SessionDBDUpdateLabel label updatesession svdhE
    The SQL query to use to update existing sessions in the database
    SessionEnv On|Off Off svdhE
    Control whether the contents of the session are written to the HTTP_SESSION environment variable
    SessionExclude pathsvdhE
    Define URL prefixes for which a session is ignored
    SessionExpiryUpdateInterval interval 0 (always update) svdhE
    Define the number of seconds a session's expiry may change without +
    SessionExclude pathsvdhE
    Define URL prefixes for which a session is ignored
    SessionExpiryUpdateInterval interval 0 (always update) svdhE
    Define the number of seconds a session's expiry may change without the session being updated
    SessionHeader headersvdhE
    Import session updates from a given HTTP response header
    SessionInclude pathsvdhE
    Define URL prefixes for which a session is valid
    SessionMaxAge maxage 0 svdhE
    Define a maximum age in seconds for a session
    SetEnv env-variable [value]svdhB
    Sets environment variables
    SetEnvIf attribute +
    SessionHeader headersvdhE
    Import session updates from a given HTTP response header
    SessionInclude pathsvdhE
    Define URL prefixes for which a session is valid
    SessionMaxAge maxage 0 svdhE
    Define a maximum age in seconds for a session
    SetEnv env-variable [value]svdhB
    Sets environment variables
    SetEnvIf attribute regex [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request + [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request
    SetEnvIfExpr expr +
    SetEnvIfExpr expr [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on an ap_expr expression
    SetEnvIfNoCase attribute regex + [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on an ap_expr expression
    SetEnvIfNoCase attribute regex [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request + [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request without respect to case
    SetHandler Handlername|NonesvdhC
    Erzwingt die Verarbeitung aller passenden Dateien durch +
    SetHandler Handlername|NonesvdhC
    Erzwingt die Verarbeitung aller passenden Dateien durch einen Handler
    SetInputFilter Filter[;Filter...]svdhC
    Bestimmt die Filter, die Client-Anfragen und POST-Eingaben +
    SetInputFilter Filter[;Filter...]svdhC
    Bestimmt die Filter, die Client-Anfragen und POST-Eingaben verarbeiten
    SetOutputFilter Filter[;Filter...]svdhC
    Bestimmt die Filter, die Antworten des Servers verarbeiten
    SSIEndTag tag "-->" svB
    String that ends an include element
    SSIErrorMsg message "[an error occurred +svdhB
    Error message displayed when there is an SSI +
    SetOutputFilter Filter[;Filter...]svdhC
    Bestimmt die Filter, die Antworten des Servers verarbeiten
    SSIEndTag tag "-->" svB
    String that ends an include element
    SSIErrorMsg message "[an error occurred +svdhB
    Error message displayed when there is an SSI error
    SSIETag on|off off dhB
    Controls whether ETags are generated by the server.
    SSILastModified on|off off dhB
    Controls whether Last-Modified headers are generated by the +
    SSIETag on|off off dhB
    Controls whether ETags are generated by the server.
    SSILastModified on|off off dhB
    Controls whether Last-Modified headers are generated by the server.
    SSILegacyExprParser on|off off dhB
    Enable compatibility mode for conditional expressions.
    SSIStartTag tag "<!--#" svB
    String that starts an include element
    SSITimeFormat formatstring "%A, %d-%b-%Y %H:%M +svdhB
    Configures the format in which date strings are +
    SSILegacyExprParser on|off off dhB
    Enable compatibility mode for conditional expressions.
    SSIStartTag tag "<!--#" svB
    String that starts an include element
    SSITimeFormat formatstring "%A, %d-%b-%Y %H:%M +svdhB
    Configures the format in which date strings are displayed
    SSIUndefinedEcho string "(none)" svdhB
    String displayed when an unset variable is echoed
    SSLCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates +
    SSIUndefinedEcho string "(none)" svdhB
    String displayed when an unset variable is echoed
    SSLCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates for Client Auth
    SSLCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for +
    SSLCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for Client Auth
    SSLCACertificateURI urisvE
    Server CA certificate store for Client Authentication
    SSLCADNRequestFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates for defining acceptable CA names
    SSLCADNRequestPath directory-pathsvE
    Directory of PEM-encoded CA Certificates for defining acceptable CA names
    SSLCARevocationCheck chain|leaf|none [flags ...] none svE
    Enable CRL-based revocation checking
    SSLCARevocationFile file-pathsvE
    File of concatenated PEM-encoded CA CRLs for +
    SSLCADNRequestURI urisvE
    certificate store of CA Certificates for defining +acceptable CA names
    SSLCARevocationCheck chain|leaf|none [flags ...] none svE
    Enable CRL-based revocation checking
    SSLCARevocationFile file-pathsvE
    File of concatenated PEM-encoded CA CRLs for Client Auth
    SSLCARevocationPath directory-pathsvE
    Directory of PEM-encoded CA CRLs for +
    SSLCARevocationPath directory-pathsvE
    Directory of PEM-encoded CA CRLs for Client Auth
    SSLCARevocationURI urisvE
    Server CA certificate revocation list store for Client Authentication
    SSLCertificateChainFile file-pathsvE
    File of PEM-encoded Server CA Certificates
    SSLCertificateFile file-path|certidsvE
    Server PEM-encoded X.509 certificate data file or token identifier
    SSLCertificateKeyFile file-path|keyidsvE
    Server PEM-encoded private key file
    SSLCipherSuite [protocol] cipher-spec DEFAULT (depends on +svdhE
    Cipher Suite available for negotiation in SSL +
    SSLCertificateURI urisvE
    Server certificate and key store
    SSLCipherSuite [protocol] cipher-spec DEFAULT (depends on +svdhE
    Cipher Suite available for negotiation in SSL handshake
    SSLClientHelloVars on|off off svE
    Enable collection of ClientHello variables
    SSLCompression on|off off svE
    Enable compression on the SSL level
    SSLCryptoDevice engine builtin sE
    Enable use of a cryptographic hardware accelerator
    SSLECHKeyDir dirnamesE
    Load the set of Encrypted Client Hello (ECH) PEM files in the named directory
    SSLEngine on|off off svE
    SSL Engine Operation Switch
    SSLFIPS on|off off sE
    SSL FIPS mode Switch
    SSLHonorCipherOrder on|off off svE
    Option to prefer the server's cipher preference order
    SSLOCSPDefaultResponder urisvE
    Set the default responder URI for OCSP validation
    SSLOCSPEnable on|leaf|off [flags] off svE
    Enable OCSP validation of the client certificate chain
    SSLOCSPNoverify on|off off svE
    skip the OCSP responder certificates verification
    SSLOCSPOverrideResponder on|off off svE
    Force use of the default responder URI for OCSP validation
    SSLOCSPProxyURL urlsvE
    Proxy URL to use for OCSP requests
    SSLOCSPResponderCertificateFile filesvE
    Set of trusted PEM encoded OCSP responder certificates
    SSLOCSPResponderTimeout seconds 10 svE
    Timeout for OCSP queries
    SSLOCSPResponseMaxAge seconds -1 svE
    Maximum allowable age for OCSP responses
    SSLOCSPResponseTimeSkew seconds 300 svE
    Maximum allowable time skew for OCSP response validation
    SSLOCSPUseRequestNonce on|off on svE
    Use a nonce within OCSP queries
    SSLOpenSSLConfCmd command-name command-valuesvE
    Configure OpenSSL parameters through its SSL_CONF API
    SSLOptions [+|-]option ...svdhE
    Configure various SSL engine run-time options
    SSLPassPhraseDialog type builtin sE
    Type of pass phrase dialog for encrypted private +
    SSLClientHelloVars on|off off svE
    Enable collection of ClientHello variables
    SSLCompression on|off off svE
    Enable compression on the SSL level
    SSLCryptoDevice engine builtin sE
    Enable use of a cryptographic hardware accelerator
    SSLECHKeyDir dirnamesE
    Load the set of Encrypted Client Hello (ECH) PEM files in the named directory
    SSLEngine on|off off svE
    SSL Engine Operation Switch
    SSLFIPS on|off off sE
    SSL FIPS mode Switch
    SSLHonorCipherOrder on|off off svE
    Option to prefer the server's cipher preference order
    SSLOCSPDefaultResponder urisvE
    Set the default responder URI for OCSP validation
    SSLOCSPEnable on|leaf|off [flags] off svE
    Enable OCSP validation of the client certificate chain
    SSLOCSPNoverify on|off off svE
    skip the OCSP responder certificates verification
    SSLOCSPOverrideResponder on|off off svE
    Force use of the default responder URI for OCSP validation
    SSLOCSPProxyURL urlsvE
    Proxy URL to use for OCSP requests
    SSLOCSPResponderCertificateFile filesvE
    Set of trusted PEM encoded OCSP responder certificates
    SSLOCSPResponderTimeout seconds 10 svE
    Timeout for OCSP queries
    SSLOCSPResponseMaxAge seconds -1 svE
    Maximum allowable age for OCSP responses
    SSLOCSPResponseTimeSkew seconds 300 svE
    Maximum allowable time skew for OCSP response validation
    SSLOCSPUseRequestNonce on|off on svE
    Use a nonce within OCSP queries
    SSLOpenSSLConfCmd command-name command-valuesvE
    Configure OpenSSL parameters through its SSL_CONF API
    SSLOptions [+|-]option ...svdhE
    Configure various SSL engine run-time options
    SSLPassPhraseDialog type builtin sE
    Type of pass phrase dialog for encrypted private keys
    SSLPolicy namesvE
    Apply a SSLPolicy by name
    SSLProtocol [+|-]protocol ... all -SSLv3 svE
    Configure usable SSL/TLS protocol versions
    SSLProxyCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates +
    SSLPolicy namesvE
    Apply a SSLPolicy by name
    SSLProtocol [+|-]protocol ... all -SSLv3 svE
    Configure usable SSL/TLS protocol versions
    SSLProxyCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates for Remote Server Auth
    SSLProxyCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for +
    SSLProxyCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for Remote Server Auth
    SSLProxyCACertificateURI urisvE
    Proxy CA certificate store for Remote Server Auth
    SSLProxyCARevocationCheck chain|leaf|none none svE
    Enable CRL-based revocation checking for Remote Server Auth
    SSLProxyCARevocationFile file-pathsvE
    File of concatenated PEM-encoded CA CRLs for Remote Server Auth
    SSLProxyCARevocationPath directory-pathsvE
    Directory of PEM-encoded CA CRLs for Remote Server Auth
    SSLProxyCheckPeerCN on|off on svE
    Whether to check the remote server certificate's CN field +
    SSLProxyCARevocationURI urisvE
    Proxy CA certificate revocation list store for Remote Server Auth
    SSLProxyCheckPeerCN on|off on svE
    Whether to check the remote server certificate's CN field
    SSLProxyCheckPeerExpire on|off on svE
    Whether to check if remote server certificate is expired +
    SSLProxyCheckPeerExpire on|off on svE
    Whether to check if remote server certificate is expired
    SSLProxyCheckPeerName on|off on svE
    Configure host name checking for remote server certificates +
    SSLProxyCheckPeerName on|off on svE
    Configure host name checking for remote server certificates
    SSLProxyCipherSuite [protocol] cipher-spec ALL:!ADH:RC4+RSA:+H +svE
    Cipher Suite available for negotiation in SSL +
    SSLProxyCipherSuite [protocol] cipher-spec ALL:!ADH:RC4+RSA:+H +svE
    Cipher Suite available for negotiation in SSL proxy handshake
    SSLProxyEngine on|off off svE
    SSL Proxy Engine Operation Switch
    SSLProxyMachineCertificateChainFile filenamesvE
    File of concatenated PEM-encoded CA certificates to be used by the proxy for choosing a certificate
    SSLProxyMachineCertificateFile filenamesvE
    File of concatenated PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificatePath directorysvE
    Directory of PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyEngine on|off off svE
    SSL Proxy Engine Operation Switch
    SSLProxyMachineCertificateChainFile filenamesvE
    File of concatenated PEM-encoded CA certificates to be used by the proxy for choosing a certificate
    SSLProxyMachineCertificateFile filenamesvE
    File of concatenated PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificatePath directorysvE
    Directory of PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificateURI urisvE
    Proxy certificate and key stores
    SSLProxyProtocol [+|-]protocol ... all -SSLv3 svE
    Configure usable SSL protocol flavors for proxy usage
    SSLProxyVerify level none svE
    Type of remote server Certificate verification
    SSLProxyVerifyDepth number 1 svE
    Maximum depth of CA Certificates in Remote Server @@ -1314,15 +1323,15 @@ ermittelt
    UserDir directory-filename [directory-filename] ... svB
    Location of the user-specific directories
    VHostCGIMode On|Off|Secure On vX
    Determines whether the virtualhost can run +
    VHostCGIMode On|Off|Secure On vD
    Determines whether the virtualhost can run subprocesses, and the privileges available to subprocesses.
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...vX
    Assign arbitrary privileges to subprocesses created +
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...vD
    Assign arbitrary privileges to subprocesses created by a virtual host.
    VHostGroup unix-groupidvX
    Sets the Group ID under which a virtual host runs.
    VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...vX
    Assign arbitrary privileges to a virtual host.
    VHostSecure On|Off On vX
    Determines whether the server runs with enhanced security +
    VHostGroup unix-groupidvD
    Sets the Group ID under which a virtual host runs.
    VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...vD
    Assign arbitrary privileges to a virtual host.
    VHostSecure On|Off On vD
    Determines whether the server runs with enhanced security for the virtualhost.
    VHostUser unix-useridvX
    Sets the User ID under which a virtual host runs.
    VHostUser unix-useridvD
    Sets the User ID under which a virtual host runs.
    VirtualDocumentRoot interpolated-directory|none none svE
    Dynamically configure the location of the document root for a given virtual host
    VirtualDocumentRootIP interpolated-directory|none none svE
    Dynamically configure the location of the document root diff --git a/docs/manual/mod/quickreference.html.en.utf8 b/docs/manual/mod/quickreference.html.en.utf8 index cd29686e63..63120e92c5 100644 --- a/docs/manual/mod/quickreference.html.en.utf8 +++ b/docs/manual/mod/quickreference.html.en.utf8 @@ -123,7 +123,7 @@ type
    AliasPreservePath OFF|ON OFF svdB
    Map the full path after the alias in a location.
    Allow from all|host|env=[!]env-variable -[host|env=[!]env-variable] ...dhE
    Controls which hosts can access an area of the +[host|env=[!]env-variable] ...dhD
    Controls which hosts can access an area of the server
    AllowCONNECT port[-port] [port[-port]] ... | None 443 563 svE
    Ports that are allowed to CONNECT through the @@ -389,20 +389,20 @@ switch before dumping core
    CryptoIV value none svdhE
    IV (Initialization Vector) to be used by the crypto filter
    CryptoKey value none svdhE
    Key to be used by the crypto filter
    CryptoSize integer 131072 svdhE
    Maximum size in bytes to buffer by the crypto filter
    CTAuditStorage directorysE
    Existing directory where data for off-line audit will be stored
    CTLogClient executablesE
    Location of certificate-transparency log client tool
    CTLogConfigDB filenamesE
    Log configuration database supporting dynamic updates
    CTMaxSCTAge num-secondssE
    Maximum age of SCT obtained from a log, before it will be +
    CTAuditStorage directorysD
    Existing directory where data for off-line audit will be stored
    CTLogClient executablesD
    Location of certificate-transparency log client tool
    CTLogConfigDB filenamesD
    Log configuration database supporting dynamic updates
    CTMaxSCTAge num-secondssD
    Maximum age of SCT obtained from a log, before it will be refreshed
    CTProxyAwareness oblivious|aware|requiresvE
    Level of CT awareness and enforcement for a proxy +
    CTProxyAwareness oblivious|aware|requiresvD
    Level of CT awareness and enforcement for a proxy
    CTSCTStorage directorysE
    Existing directory where SCTs are managed
    CTServerHelloSCTLimit limitsE
    Limit on number of SCTs that can be returned in +
    CTSCTStorage directorysD
    Existing directory where SCTs are managed
    CTServerHelloSCTLimit limitsD
    Limit on number of SCTs that can be returned in ServerHello
    CTStaticLogConfig log-id|- public-key-file|- 1|0|- min-timestamp|- max-timestamp|- -log-URL|-sE
    Static configuration of information about a log
    CTStaticSCTs certificate-pem-file sct-directorysE
    Static configuration of one or more SCTs for a server certificate +log-URL|-sD
    Static configuration of information about a log
    CTStaticSCTs certificate-pem-file sct-directorysD
    Static configuration of one or more SCTs for a server certificate
    CustomLog file|pipe|provider format|nickname @@ -454,7 +454,7 @@ which no other media type configuration could be found.
    DeflateMemLevel value 9 svE
    How much memory should be used by zlib for compression
    DeflateWindowSize value 15 svE
    Zlib compression window size
    Deny from all|host|env=[!]env-variable -[host|env=[!]env-variable] ...dhE
    Controls which hosts are denied access to the +[host|env=[!]env-variable] ...dhD
    Controls which hosts are denied access to the server
    <Directory directory-path> ... </Directory>svC
    Enclose a group of directives that apply only to the @@ -473,7 +473,7 @@ the contents of file-system directories matching a regular expression.
    DirectorySlash On|Off|NotFound On svdhB
    Toggle trailing slash redirects on or off
    DocumentRoot directory-path "/usr/local/apache/ +svC
    Directory that forms the main document tree visible from the web
    DTracePrivileges On|Off Off sX
    Determines whether the privileges required by dtrace are enabled.
    DTracePrivileges On|Off Off sD
    Determines whether the privileges required by dtrace are enabled.
    DumpIOInput On|Off Off sE
    Dump all input data to the error log
    DumpIOOutput On|Off Off sE
    Dump all output data to the error log
    <Else> ... </Else>svdhC
    Contains directives that apply only if the condition of a @@ -609,10 +609,10 @@ presence or absence of a specific module
    <IfVersion [[!]operator] version> ... </IfVersion>svdhE
    contains version dependent configuration
    ImapBase map|referer|URL http://servername/ svdhB
    Default base for imagemap files
    ImapDefault error|nocontent|map|referer|URL nocontent svdhB
    Default action when an imagemap is called with coordinates +
    ImapBase map|referer|URL http://servername/ svdhD
    Default base for imagemap files
    ImapDefault error|nocontent|map|referer|URL nocontent svdhD
    Default action when an imagemap is called with coordinates that are not explicitly mapped
    ImapMenu none|formatted|semiformatted|unformatted formatted svdhB
    Action if no coordinates are given when calling +
    ImapMenu none|formatted|semiformatted|unformatted formatted svdhD
    Action if no coordinates are given when calling an imagemap
    Include file-path|directory-path|wildcardsvdC
    Includes other configuration files from within the server configuration files
    MDDriveMode always|auto|manual auto sX
    former name of MDRenewMode.
    MDExternalAccountBinding key-id hmac-64 | none | file none sX
    Set the external account binding keyid and hmac values to use at CA
    MDHttpProxy urlsX
    Define a proxy for outgoing connections.
    MDInitialDelay duration 0s sX
    How long to delay the first certificate check.
    MDMatchNames all|servernames all sX
    Determines how DNS names are matched to vhosts
    MDMember hostnamesX
    Additional hostname for the managed domain.
    MDMembers auto|manual auto sX
    Control if the alias domain names are automatically added.
    MDMessageCmd path-to-cmd optional-argssX
    Handle events for Manage Domains
    MDMustStaple on|off off sX
    Control if new certificates carry the OCSP Must Staple flag.
    MDNotifyCmd path [ args ]sX
    Run a program when a Managed Domain is ready.
    MDomain dns-name [ other-dns-name... ] [auto|manual]sX
    Define list of domain names that belong to one group.
    <MDomainSet dns-name [ other-dns-name... ]>...</MDomainSet>sX
    Container for directives applied to the same managed domains.
    MDPortMap map1 [ map2 ] http:80 https:443 sX
    Map external to internal ports for domain ownership verification.
    MDPrivateKeys type [ params... ] RSA 2048 sX
    Set type and size of the private keys generated.
    MDProfile namesX
    Use a specific ACME profile from the CA
    MDProfileMandatory on|off off sX
    Control if an MDProfile is mandatory.
    MDRenewMode always|auto|manual auto sX
    Controls if certificates shall be renewed.
    MDRenewViaARI on|off on sX
    usage of the ACME ARI extension (rfc9773).
    MDRenewWindow duration 33% sX
    Control when a certificate will be renewed.
    MDRequireHttps off|temporary|permanent off sX
    Redirects http: traffic to https: for Managed Domains.
    MDRetryDelay duration 30s sX
    Time length for first retry, doubled on every consecutive error.
    MDRetryFailover number 13 sX
    The number of errors before a failover to another CA is triggered
    MDServerStatus on|off off sX
    Control if Managed Domain information is added to server-status.
    MDStapleOthers on|off on sX
    Enable stapling for certificates not managed by mod_md.
    MDStapling on|off off sX
    Enable stapling for all or a particular MDomain.
    MDStaplingKeepResponse duration 7d sX
    Controls when old responses should be removed.
    MDStaplingRenewWindow duration 33% sX
    Control when the stapling responses will be renewed.
    MDStoreDir path md sX
    Path on the local file system to store the Managed Domains data.
    MDStoreLocks on|off|duration off sX
    Configure locking of store for updates
    MDWarnWindow duration 10% sX
    Define the time window when you want to be warned about an expiring certificate.
    MemcacheConnTTL num[units] 15s svE
    Keepalive time for idle connections
    MergeSlashes ON|OFF ON svC
    Controls whether the server merges consecutive slashes in URLs. +
    MDHttpProxyCACertificateFile path-to-pem-file none sX
    Sets the root (CA) certificates to use for TLS connections to the http-proxy.
    MDInitialDelay duration 0s sX
    How long to delay the first certificate check.
    MDMatchNames all|servernames all sX
    Determines how DNS names are matched to vhosts
    MDMember hostnamesX
    Additional hostname for the managed domain.
    MDMembers auto|manual auto sX
    Control if the alias domain names are automatically added.
    MDMessageCmd path-to-cmd optional-argssX
    Handle events for Manage Domains
    MDMustStaple on|off off sX
    Control if new certificates carry the OCSP Must Staple flag.
    MDNotifyCmd path [ args ]sX
    Run a program when a Managed Domain is ready.
    MDomain dns-name [ other-dns-name... ] [auto|manual]sX
    Define list of domain names that belong to one group.
    <MDomainSet dns-name [ other-dns-name... ]>...</MDomainSet>sX
    Container for directives applied to the same managed domains.
    MDPortMap map1 [ map2 ] http:80 https:443 sX
    Map external to internal ports for domain ownership verification.
    MDPrivateKeys type [ params... ] RSA 2048 sX
    Set type and size of the private keys generated.
    MDProfile namesX
    Use a specific ACME profile from the CA
    MDProfileMandatory on|off off sX
    Control if an MDProfile is mandatory.
    MDRenewMode always|auto|manual auto sX
    Controls if certificates shall be renewed.
    MDRenewViaARI on|off on sX
    usage of the ACME ARI extension (rfc9773).
    MDRenewWindow duration 33% sX
    Control when a certificate will be renewed.
    MDRequireHttps off|temporary|permanent off sX
    Redirects http: traffic to https: for Managed Domains.
    MDRetryDelay duration 30s sX
    Time length for first retry, doubled on every consecutive error.
    MDRetryFailover number 13 sX
    The number of errors before a failover to another CA is triggered
    MDServerStatus on|off off sX
    Control if Managed Domain information is added to server-status.
    MDStapleOthers on|off on sX
    Enable stapling for certificates not managed by mod_md.
    MDStapling on|off off sX
    Enable stapling for all or a particular MDomain.
    MDStaplingKeepResponse duration 7d sX
    Controls when old responses should be removed.
    MDStaplingRenewWindow duration 33% sX
    Control when the stapling responses will be renewed.
    MDStoreDir path md sX
    Path on the local file system to store the Managed Domains data.
    MDStoreLocks on|off|duration off sX
    Configure locking of store for updates
    MDWarnWindow duration 10% sX
    Define the time window when you want to be warned about an expiring certificate.
    MemcacheConnTTL num[units] 15s svE
    Keepalive time for idle connections
    MergeSlashes ON|OFF ON svC
    Controls whether the server merges consecutive slashes in URLs.
    MergeTrailers [on|off] off svC
    Determines whether trailers are merged into headers
    MetaDir directory .web svdhE
    Name of the directory to find CERN-style meta information +
    MergeTrailers [on|off] off svC
    Determines whether trailers are merged into headers
    MetaDir directory .web svdhD
    Name of the directory to find CERN-style meta information files
    MetaFiles on|off off svdhE
    Activates CERN meta-file processing
    MetaSuffix suffix .meta svdhE
    File name suffix for the file containing CERN-style +
    MetaFiles on|off off svdhD
    Activates CERN meta-file processing
    MetaSuffix suffix .meta svdhD
    File name suffix for the file containing CERN-style meta information
    MimeMagicDecompression On|Off Off svE
    Enable decompression of compressed files for MIME type detection
    MimeMagicFile file-pathsvE
    Enable MIME-type determination based on file contents +
    MimeMagicDecompression On|Off Off svE
    Enable decompression of compressed files for MIME type detection
    MimeMagicFile file-pathsvE
    Enable MIME-type determination based on file contents using the specified magic file
    MimeOptions option [option] ...svdhB
    Configures mod_mime behavior
    MinSpareServers number 5 sM
    Minimum number of idle child server processes
    MinSpareThreads numbersM
    Minimum number of idle threads available to handle request +
    MimeOptions option [option] ...svdhB
    Configures mod_mime behavior
    MinSpareServers number 5 sM
    Minimum number of idle child server processes
    MinSpareThreads numbersM
    Minimum number of idle threads available to handle request spikes
    MMapFile file-path [file-path] ...sX
    Map a list of files into memory at startup time
    ModemStandard V.21|V.26bis|V.32|V.34|V.92dX
    Modem standard to simulate
    ModMimeUsePathInfo On|Off Off dB
    Tells mod_mime to treat path_info +
    MMapFile file-path [file-path] ...sX
    Map a list of files into memory at startup time
    ModemStandard V.21|V.26bis|V.32|V.34|V.92dX
    Modem standard to simulate
    ModMimeUsePathInfo On|Off Off dB
    Tells mod_mime to treat path_info components as part of the filename
    MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers -[Handlers|Filters] NegotiatedOnly svdhB
    The types of files that will be included when searching for +
    MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers +[Handlers|Filters] NegotiatedOnly svdhB
    The types of files that will be included when searching for a matching file with MultiViews
    Mutex mechanism [default|mutex-name] ... [OmitPID] default sC
    Configures mutex mechanism and lock file directory for all +
    Mutex mechanism [default|mutex-name] ... [OmitPID] default sC
    Configures mutex mechanism and lock file directory for all or specified mutexes
    NameVirtualHost addr[:port]sC
    DEPRECATED: Designates an IP address for name-virtual +
    NameVirtualHost addr[:port]sC
    DEPRECATED: Designates an IP address for name-virtual hosting
    NoProxy host [host] ...svE
    Hosts, domains, or networks that will be connected to +
    NoProxy host [host] ...svE
    Hosts, domains, or networks that will be connected to directly
    NWSSLTrustedCerts filename [filename] ...sB
    List of additional client certificates
    NWSSLUpgradeable [IP-address:]portnumbersB
    Allows a connection to be upgraded to an SSL connection upon request
    Options - [+|-]option [[+|-]option] ... FollowSymlinks svdhC
    Configures what features are available in a particular +
    NWSSLTrustedCerts filename [filename] ...sB
    List of additional client certificates
    NWSSLUpgradeable [IP-address:]portnumbersB
    Allows a connection to be upgraded to an SSL connection upon request
    Options + [+|-]option [[+|-]option] ... FollowSymlinks svdhC
    Configures what features are available in a particular directory
    Order ordering Deny,Allow dhE
    Controls the default access state and the order in which +
    Order ordering Deny,Allow dhD
    Controls the default access state and the order in which Allow and Deny are evaluated.
    OutputSed sed-commanddhX
    Sed command for filtering response content
    PassEnv env-variable [env-variable] -...svdhB
    Passes environment variables from the shell
    PidFile filename httpd.pid sM
    File where the server records the process ID +
    OutputSed sed-commanddhX
    Sed command for filtering response content
    PassEnv env-variable [env-variable] +...svdhB
    Passes environment variables from the shell
    PidFile filename httpd.pid sM
    File where the server records the process ID of the daemon
    PolicyConditional ignore|log|enforcesvdE
    Enable the conditional request policy.
    PolicyConditionalURL urlsvdE
    URL describing the conditional request policy.
    PolicyEnvironment variable log-value ignore-valuesvdE
    Override policies based on an environment variable.
    PolicyFilter on|offsvdE
    Enable or disable policies for the given URL space.
    PolicyKeepalive ignore|log|enforcesvdE
    Enable the keepalive policy.
    PolicyKeepaliveURL urlsvdE
    URL describing the keepalive policy.
    PolicyLength ignore|log|enforcesvdE
    Enable the content length policy.
    PolicyLengthURL urlsvdE
    URL describing the content length policy.
    PolicyMaxage ignore|log|enforce agesvdE
    Enable the caching minimum max-age policy.
    PolicyMaxageURL urlsvdE
    URL describing the caching minimum freshness lifetime policy.
    PolicyNocache ignore|log|enforcesvdE
    Enable the caching no-cache policy.
    PolicyNocacheURL urlsvdE
    URL describing the caching no-cache policy.
    PolicyType ignore|log|enforce type [ type [ ... ]]svdE
    Enable the content type policy.
    PolicyTypeURL urlsvdE
    URL describing the content type policy.
    PolicyValidation ignore|log|enforcesvdE
    Enable the validation policy.
    PolicyValidationURL urlsvdE
    URL describing the content type policy.
    PolicyVary ignore|log|enforce header [ header [ ... ]]svdE
    Enable the Vary policy.
    PolicyVaryURL urlsvdE
    URL describing the content type policy.
    PolicyVersion ignore|log|enforce HTTP/0.9|HTTP/1.0|HTTP/1.1svdE
    Enable the version policy.
    PolicyVersionURL urlsvdE
    URL describing the minimum request HTTP version policy.
    PollersPerChild number 0 sM
    Number of poll threads per child process
    PrivilegesMode FAST|SECURE|SELECTIVE FAST svdX
    Trade off processing speed and efficiency vs security against +
    PolicyConditional ignore|log|enforcesvdE
    Enable the conditional request policy.
    PolicyConditionalURL urlsvdE
    URL describing the conditional request policy.
    PolicyEnvironment variable log-value ignore-valuesvdE
    Override policies based on an environment variable.
    PolicyFilter on|offsvdE
    Enable or disable policies for the given URL space.
    PolicyKeepalive ignore|log|enforcesvdE
    Enable the keepalive policy.
    PolicyKeepaliveURL urlsvdE
    URL describing the keepalive policy.
    PolicyLength ignore|log|enforcesvdE
    Enable the content length policy.
    PolicyLengthURL urlsvdE
    URL describing the content length policy.
    PolicyMaxage ignore|log|enforce agesvdE
    Enable the caching minimum max-age policy.
    PolicyMaxageURL urlsvdE
    URL describing the caching minimum freshness lifetime policy.
    PolicyNocache ignore|log|enforcesvdE
    Enable the caching no-cache policy.
    PolicyNocacheURL urlsvdE
    URL describing the caching no-cache policy.
    PolicyType ignore|log|enforce type [ type [ ... ]]svdE
    Enable the content type policy.
    PolicyTypeURL urlsvdE
    URL describing the content type policy.
    PolicyValidation ignore|log|enforcesvdE
    Enable the validation policy.
    PolicyValidationURL urlsvdE
    URL describing the content type policy.
    PolicyVary ignore|log|enforce header [ header [ ... ]]svdE
    Enable the Vary policy.
    PolicyVaryURL urlsvdE
    URL describing the content type policy.
    PolicyVersion ignore|log|enforce HTTP/0.9|HTTP/1.0|HTTP/1.1svdE
    Enable the version policy.
    PolicyVersionURL urlsvdE
    URL describing the minimum request HTTP version policy.
    PollersPerChild number 0 sM
    Number of poll threads per child process
    PrivilegesMode FAST|SECURE|SELECTIVE FAST svdD
    Trade off processing speed and efficiency vs security against malicious privileges-aware code.
    Protocol protocolsvC
    Protocol for a listening socket
    ProtocolEcho On|Off Off svX
    Turn the echo server on or off
    Protocols protocol ... http/1.1 svC
    Protocols available for a server/virtual host
    ProtocolsHonorOrder On|Off On svC
    Determines if order of Protocols determines precedence during negotiation
    <Proxy wildcard-url> ...</Proxy>svE
    Container for directives applied to proxied resources
    Proxy100Continue Off|On On svdE
    Forward 100-continue expectation to the origin server
    ProxyAddHeaders Off|On On svdE
    Add proxy information in X-Forwarded-* headers
    ProxyAsyncDelay time[s]svdE
    Time to poll synchronously before handing a connection to the +
    Protocol protocolsvC
    Protocol for a listening socket
    ProtocolEcho On|Off Off svX
    Turn the echo server on or off
    Protocols protocol ... http/1.1 svC
    Protocols available for a server/virtual host
    ProtocolsHonorOrder On|Off On svC
    Determines if order of Protocols determines precedence during negotiation
    <Proxy wildcard-url> ...</Proxy>svE
    Container for directives applied to proxied resources
    Proxy100Continue Off|On On svdE
    Forward 100-continue expectation to the origin server
    ProxyAddHeaders Off|On On svdE
    Add proxy information in X-Forwarded-* headers
    ProxyAsyncDelay time[s]svdE
    Time to poll synchronously before handing a connection to the MPM for asynchronous processing
    ProxyAsyncIdleTimeout time[s]svdE
    Inactivity timeout for asynchronous proxy connections
    ProxyBadHeader IsError|Ignore|StartBody IsError svE
    Determines how to handle bad header lines in a +
    ProxyAsyncIdleTimeout time[s]svdE
    Inactivity timeout for asynchronous proxy connections
    ProxyBadHeader IsError|Ignore|StartBody IsError svE
    Determines how to handle bad header lines in a response
    ProxyBeaconAddress address:portsvE
    Address of the reverse proxy to which a backend sends its +
    ProxyBeaconAddress address:portsvE
    Address of the reverse proxy to which a backend sends its announcements
    ProxyBeaconAdvertise urlsvE
    The routable URL a backend announces to the reverse proxy
    ProxyBeaconBalancer namesvE
    Name of the balancer that announced backends are added to
    ProxyBeaconInterval interval 5 svE
    How often a backend publishes its announcement
    ProxyBeaconListen [address][:port]svE
    Address on which the reverse proxy receives backend +
    ProxyBeaconAdvertise urlsvE
    The routable URL a backend announces to the reverse proxy
    ProxyBeaconBalancer namesvE
    Name of the balancer that announced backends are added to
    ProxyBeaconInterval interval 5 svE
    How often a backend publishes its announcement
    ProxyBeaconListen [address][:port]svE
    Address on which the reverse proxy receives backend beacons
    ProxyBeaconMaxSkew intervalsvE
    Maximum allowed age of a signed announcement
    ProxyBeaconSecret secretsvE
    Pre-shared secret used to authenticate announcements
    ProxyBeaconTimeout interval 0 svE
    How long the proxy waits, without an announcement, before a backend +
    ProxyBeaconMaxSkew intervalsvE
    Maximum allowed age of a signed announcement
    ProxyBeaconSecret secretsvE
    Pre-shared secret used to authenticate announcements
    ProxyBeaconTimeout interval 0 svE
    How long the proxy waits, without an announcement, before a backend is taken out of rotation
    ProxyBlock *|hostname|partial-hostname [hostname|partial-hostname]...svE
    Disallow proxy requests to certain hosts
    ProxyDomain DomainsvE
    Default domain name for proxied requests
    ProxyErrorOverride Off|On [code ...] Off svdE
    Override error pages for proxied content
    ProxyExpressDBMFile pathnamesvE
    Pathname to DBM file.
    ProxyExpressDBMType type default svE
    DBM type of file.
    ProxyExpressEnable on|off off svE
    Enable the module functionality.
    ProxyFCGIBackendType FPM|GENERIC FPM svdhE
    Specify the type of backend FastCGI application
    ProxyFCGISetEnvIf conditional-expression +
    ProxyBlock *|hostname|partial-hostname [hostname|partial-hostname]...svE
    Disallow proxy requests to certain hosts
    ProxyDomain DomainsvE
    Default domain name for proxied requests
    ProxyErrorOverride Off|On [code ...] Off svdE
    Override error pages for proxied content
    ProxyExpressDBMFile pathnamesvE
    Pathname to DBM file.
    ProxyExpressDBMType type default svE
    DBM type of file.
    ProxyExpressEnable on|off off svE
    Enable the module functionality.
    ProxyFCGIBackendType FPM|GENERIC FPM svdhE
    Specify the type of backend FastCGI application
    ProxyFCGISetEnvIf conditional-expression [!]environment-variable-name - [value-expression]svdhE
    Allow variables sent to FastCGI servers to be fixed up
    ProxyFtpDirCharset character_set ISO-8859-1 svdE
    Define the character set for proxied FTP listings
    ProxyFtpEscapeWildcards on|off on svdE
    Whether wildcards in requested filenames are escaped when sent to the FTP server
    ProxyFtpListOnWildcard on|off on svdE
    Whether wildcards in requested filenames trigger a file listing
    ProxyHCExpr name {ap_expr expression}svE
    Creates a named condition expression to use to determine health of the backend based on its response
    ProxyHCTemplate name parameter=setting [...]svE
    Creates a named template for setting various health check parameters
    ProxyHCTPsize size 16 sE
    Sets the total server-wide size of the threadpool used for the health check workers
    ProxyHTMLBufSize bytes 8192 svdB
    Sets the buffer size increment for buffering inline scripts and + [value-expression]svdhE
    Allow variables sent to FastCGI servers to be fixed up
    ProxyFtpDirCharset character_set ISO-8859-1 svdE
    Define the character set for proxied FTP listings
    ProxyFtpEscapeWildcards on|off on svdE
    Whether wildcards in requested filenames are escaped when sent to the FTP server
    ProxyFtpListOnWildcard on|off on svdE
    Whether wildcards in requested filenames trigger a file listing
    ProxyHCExpr name {ap_expr expression}svE
    Creates a named condition expression to use to determine health of the backend based on its response
    ProxyHCTemplate name parameter=setting [...]svE
    Creates a named template for setting various health check parameters
    ProxyHCTPsize size 16 sE
    Sets the total server-wide size of the threadpool used for the health check workers
    ProxyHTMLBufSize bytes 8192 svdB
    Sets the buffer size increment for buffering inline scripts and stylesheets.
    ProxyHTMLCharsetOut Charset | * UTF-8 svdB
    Specify a charset for mod_proxy_html output.
    ProxyHTMLDocType HTML|XHTML [Legacy]
    OR +
    ProxyHTMLCharsetOut Charset | * UTF-8 svdB
    Specify a charset for mod_proxy_html output.
    ProxyHTMLDocType HTML|XHTML [Legacy]
    OR
    ProxyHTMLDocType fpi [SGML|XML]
    OR
    ProxyHTMLDocType html5
    OR -
    ProxyHTMLDocType auto
    auto (2.5/trunk ver +svdB
    Sets an HTML or XHTML document type declaration.
    ProxyHTMLEnable On|Off Off svdB
    Turns the proxy_html filter on or off.
    ProxyHTMLEvents attribute [attribute ...]svdB
    Specify attributes to treat as scripting events.
    ProxyHTMLExtended On|Off Off svdB
    Determines whether to fix links in inline scripts, stylesheets, +
    ProxyHTMLDocType auto
    auto (2.5/trunk ver +svdB
    Sets an HTML or XHTML document type declaration.
    ProxyHTMLEnable On|Off Off svdB
    Turns the proxy_html filter on or off.
    ProxyHTMLEvents attribute [attribute ...]svdB
    Specify attributes to treat as scripting events.
    ProxyHTMLExtended On|Off Off svdB
    Determines whether to fix links in inline scripts, stylesheets, and scripting events.
    ProxyHTMLFixups [lowercase] [dospath] [reset] none svdB
    Fixes for simple HTML errors.
    ProxyHTMLInterp On|Off Off svdB
    Enables per-request interpolation of +
    ProxyHTMLFixups [lowercase] [dospath] [reset] none svdB
    Fixes for simple HTML errors.
    ProxyHTMLInterp On|Off Off svdB
    Enables per-request interpolation of ProxyHTMLURLMap rules.
    ProxyHTMLLinks element attribute [attribute2 ...]svdB
    Specify HTML elements that have URL attributes to be rewritten.
    ProxyHTMLMeta On|Off Off svdB
    Turns on or off extra pre-parsing of metadata in HTML +
    ProxyHTMLLinks element attribute [attribute2 ...]svdB
    Specify HTML elements that have URL attributes to be rewritten.
    ProxyHTMLMeta On|Off Off svdB
    Turns on or off extra pre-parsing of metadata in HTML <head> sections.
    ProxyHTMLStripComments On|Off Off svdB
    Determines whether to strip HTML comments.
    ProxyHTMLURLMap from-pattern to-pattern [flags] [cond]svdB
    Defines a rule to rewrite HTML links
    ProxyIOBufferSize bytes 8192 svE
    Determine size of internal data throughput buffer
    <ProxyMatch regex> ...</ProxyMatch>svE
    Container for directives applied to regular-expression-matched +
    ProxyHTMLStripComments On|Off Off svdB
    Determines whether to strip HTML comments.
    ProxyHTMLURLMap from-pattern to-pattern [flags] [cond]svdB
    Defines a rule to rewrite HTML links
    ProxyIOBufferSize bytes 8192 svE
    Determine size of internal data throughput buffer
    <ProxyMatch regex> ...</ProxyMatch>svE
    Container for directives applied to regular-expression-matched proxied resources
    ProxyMaxForwards number -1 svE
    Maximum number of proxies that a request can be forwarded +
    ProxyMaxForwards number -1 svE
    Maximum number of proxies that a request can be forwarded through
    ProxyPass [path] !|url [key=value - [key=value ...]] [nocanon] [interpolate] [noquery]svdE
    Maps remote servers into the local server URL-space
    ProxyPassInherit On|Off On svE
    Inherit ProxyPass directives defined from the main server
    ProxyPassInterpolateEnv On|Off Off svdE
    Enable Environment Variable interpolation in Reverse Proxy configurations
    ProxyPassMatch [regex] !|url [key=value - [key=value ...]]svdE
    Maps remote servers into the local server URL-space using regular expressions
    ProxyPassReverse [path] url -[interpolate]svdE
    Adjusts the URL in HTTP response headers sent from a reverse +
    ProxyPass [path] !|url [key=value + [key=value ...]] [nocanon] [interpolate] [noquery]svdE
    Maps remote servers into the local server URL-space
    ProxyPassInherit On|Off On svE
    Inherit ProxyPass directives defined from the main server
    ProxyPassInterpolateEnv On|Off Off svdE
    Enable Environment Variable interpolation in Reverse Proxy configurations
    ProxyPassMatch [regex] !|url [key=value + [key=value ...]]svdE
    Maps remote servers into the local server URL-space using regular expressions
    ProxyPassReverse [path] url +[interpolate]svdE
    Adjusts the URL in HTTP response headers sent from a reverse proxied server
    ProxyPassReverseCookieDomain internal-domain -public-domain [interpolate]svdE
    Adjusts the Domain string in Set-Cookie headers from a reverse- +
    ProxyPassReverseCookieDomain internal-domain +public-domain [interpolate]svdE
    Adjusts the Domain string in Set-Cookie headers from a reverse- proxied server
    ProxyPassReverseCookiePath internal-path -public-path [interpolate]svdE
    Adjusts the Path string in Set-Cookie headers from a reverse- +
    ProxyPassReverseCookiePath internal-path +public-path [interpolate]svdE
    Adjusts the Path string in Set-Cookie headers from a reverse- proxied server
    ProxyPreserveHost On|Off Off svdE
    Use incoming Host HTTP request header for proxy +
    ProxyPreserveHost On|Off Off svdE
    Use incoming Host HTTP request header for proxy request
    ProxyReceiveBufferSize bytes 0 svE
    Network buffer size for proxied HTTP and FTP +
    ProxyReceiveBufferSize bytes 0 svE
    Network buffer size for proxied HTTP and FTP connections
    ProxyRemote match remote-server [username:password]svE
    Remote proxy used to handle certain requests
    ProxyRemoteMatch regex remote-server [username:password]svE
    Remote proxy used to handle requests matched by regular +
    ProxyRemote match remote-server [username:password]svE
    Remote proxy used to handle certain requests
    ProxyRemoteMatch regex remote-server [username:password]svE
    Remote proxy used to handle requests matched by regular expressions
    ProxyRequests On|Off Off svE
    Enables forward (standard) proxy requests
    ProxySCGIInternalRedirect On|Off|Headername On svdE
    Enable or disable internal redirect responses from the +
    ProxyRequests On|Off Off svE
    Enables forward (standard) proxy requests
    ProxySCGIInternalRedirect On|Off|Headername On svdE
    Enable or disable internal redirect responses from the backend
    ProxySCGISendfile On|Off|Headername Off svdE
    Enable evaluation of X-Sendfile pseudo response +
    ProxySCGISendfile On|Off|Headername Off svdE
    Enable evaluation of X-Sendfile pseudo response header
    ProxySet url key=value [key=value ...]svdE
    Set various Proxy balancer or member parameters
    ProxySourceAddress addresssvE
    Set local IP address for outgoing proxy connections
    ProxyStatus Off|On|Full Off svE
    Show Proxy LoadBalancer status in mod_status
    ProxyTimeout time-interval[s]svE
    Network timeout for proxied requests
    ProxyVia On|Off|Full|Block Off svE
    Information provided in the Via HTTP response +
    ProxySet url key=value [key=value ...]svdE
    Set various Proxy balancer or member parameters
    ProxySourceAddress addresssvE
    Set local IP address for outgoing proxy connections
    ProxyStatus Off|On|Full Off svE
    Show Proxy LoadBalancer status in mod_status
    ProxyTimeout time-interval[s]svE
    Network timeout for proxied requests
    ProxyVia On|Off|Full|Block Off svE
    Information provided in the Via HTTP response header for proxied requests
    ProxyWebsocketAsync ON|OFFsvE
    Instructs this module to try to create an asynchronous tunnel
    ProxyWebsocketAsyncDelay num[ms] 0 svE
    Sets the amount of time the tunnel waits synchronously for data
    ProxyWebsocketFallbackToProxyHttp On|Off On svE
    Instructs this module to let mod_proxy_http handle the request
    ProxyWebsocketIdleTimeout num[ms] 0 svE
    Sets the maximum amount of time to wait for data on the websockets tunnel
    QualifyRedirectURL On|Off Off svdC
    Controls whether the REDIRECT_URL environment variable is +
    ProxyWebsocketAsync ON|OFFsvD
    Instructs this module to try to create an asynchronous tunnel
    ProxyWebsocketAsyncDelay num[ms] 0 svD
    Sets the amount of time the tunnel waits synchronously for data
    ProxyWebsocketFallbackToProxyHttp On|Off On svD
    Instructs this module to let mod_proxy_http handle the request
    ProxyWebsocketIdleTimeout num[ms] 0 svD
    Sets the maximum amount of time to wait for data on the websockets tunnel
    QualifyRedirectURL On|Off Off svdC
    Controls whether the REDIRECT_URL environment variable is fully qualified
    ReadBufferSize bytes 8192 svdC
    Size of the buffers used to read data
    ReadmeName filenamesvdhB
    Name of the file that will be inserted at the end +
    ReadBufferSize bytes 8192 svdC
    Size of the buffers used to read data
    ReadmeName filenamesvdhB
    Name of the file that will be inserted at the end of the index listing
    ReceiveBufferSize bytes 0 sM
    TCP receive buffer size
    Redirect [status] [URL-path] -URLsvdhB
    Sends an external redirect asking the client to fetch +
    ReceiveBufferSize bytes 0 sM
    TCP receive buffer size
    Redirect [status] [URL-path] +URLsvdhB
    Sends an external redirect asking the client to fetch a different URL
    RedirectMatch [status] regex -URLsvdhB
    Sends an external redirect based on a regular expression match +
    RedirectMatch [status] regex +URLsvdhB
    Sends an external redirect based on a regular expression match of the current URL
    RedirectPermanent URL-path URLsvdhB
    Sends an external permanent redirect asking the client to fetch +
    RedirectPermanent URL-path URLsvdhB
    Sends an external permanent redirect asking the client to fetch a different URL
    RedirectRelative On|Off Off svdB
    Allows relative redirect targets.
    RedirectTemp URL-path URLsvdhB
    Sends an external temporary redirect asking the client to fetch +
    RedirectRelative On|Off Off svdB
    Allows relative redirect targets.
    RedirectTemp URL-path URLsvdhB
    Sends an external temporary redirect asking the client to fetch a different URL
    RedisConnPoolTTL num[units] 15s svE
    TTL used for the connection pool with the Redis server(s)
    RedisTimeout num[units] 5s svE
    R/W timeout used for the connection with the Redis server(s)
    ReflectorHeader inputheader [outputheader]svdhB
    Reflect an input header to the output headers
    RegexDefaultOptions [none] [+|-]option [[+|-]option] ... DOTALL DOLLAR_ENDON +sC
    Allow to configure global/default options for regexes
    RegisterHttpMethod method [method [...]]sC
    Register non-standard HTTP methods
    RemoteIPHeader header-fieldsvB
    Declare the header field which should be parsed for useragent IP addresses
    RemoteIPInternalProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPInternalProxyList filenamesvB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPProxiesHeader HeaderFieldNamesvB
    Declare the header field which will record all intermediate IP addresses
    RemoteIPProxyProtocol On|OffsvB
    Enable or disable PROXY protocol handling
    RemoteIPProxyProtocolExceptions host|range [host|range] [host|range]svB
    Disable processing of PROXY header for certain hosts or networks
    RemoteIPTrustedProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoteIPTrustedProxyList filenamesvB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoveCharset extension [extension] -...vdhB
    Removes any character set associations for a set of file +
    RedisConnPoolTTL num[units] 15s svE
    TTL used for the connection pool with the Redis server(s)
    RedisTimeout num[units] 5s svE
    R/W timeout used for the connection with the Redis server(s)
    ReflectorHeader inputheader [outputheader]svdhB
    Reflect an input header to the output headers
    RegexDefaultOptions [none] [+|-]option [[+|-]option] ... DOTALL DOLLAR_ENDON +sC
    Allow to configure global/default options for regexes
    RegisterHttpMethod method [method [...]]sC
    Register non-standard HTTP methods
    RemoteIPHeader header-fieldsvB
    Declare the header field which should be parsed for useragent IP addresses
    RemoteIPInternalProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPInternalProxyList filenamesvB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPProxiesHeader HeaderFieldNamesvB
    Declare the header field which will record all intermediate IP addresses
    RemoteIPProxyProtocol On|OffsvB
    Enable or disable PROXY protocol handling
    RemoteIPProxyProtocolExceptions host|range [host|range] [host|range]svB
    Disable processing of PROXY header for certain hosts or networks
    RemoteIPTrustedProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoteIPTrustedProxyList filenamesvB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoveCharset extension [extension] +...vdhB
    Removes any character set associations for a set of file extensions
    RemoveEncoding extension [extension] -...vdhB
    Removes any content encoding associations for a set of file +
    RemoveEncoding extension [extension] +...vdhB
    Removes any content encoding associations for a set of file extensions
    RemoveHandler extension [extension] -...vdhB
    Removes any handler associations for a set of file +
    RemoveHandler extension [extension] +...vdhB
    Removes any handler associations for a set of file extensions
    RemoveInputFilter extension [extension] -...vdhB
    Removes any input filter associations for a set of file +
    RemoveInputFilter extension [extension] +...vdhB
    Removes any input filter associations for a set of file extensions
    RemoveLanguage extension [extension] -...vdhB
    Removes any language associations for a set of file +
    RemoveLanguage extension [extension] +...vdhB
    Removes any language associations for a set of file extensions
    RemoveOutputFilter extension [extension] -...vdhB
    Removes any output filter associations for a set of file +
    RemoveOutputFilter extension [extension] +...vdhB
    Removes any output filter associations for a set of file extensions
    RemoveType extension [extension] -...vdhB
    Removes any content type associations for a set of file +
    RemoveType extension [extension] +...vdhB
    Removes any content type associations for a set of file extensions
    RequestHeader add|append|edit|edit*|merge|set|setifempty|unset +
    RequestHeader add|append|edit|edit*|merge|set|setifempty|unset header [[expr=]value [replacement] [early|env=[!]varname|expr=expression]] -svdhE
    Configure HTTP request headers
    RequestReadTimeout +svdhE
    Configure HTTP request headers
    RequestReadTimeout [handshake=timeout[-maxtimeout][,MinRate=rate] [header=timeout[-maxtimeout][,MinRate=rate] [body=timeout[-maxtimeout][,MinRate=rate] - handshake=0 header= +svE
    Set timeout values for completing the TLS handshake, receiving + handshake=0 header= +svE
    Set timeout values for completing the TLS handshake, receiving the request headers and/or body from client.
    Require [not] entity-name - [entity-name] ...dhB
    Tests whether an authenticated user is authorized by +
    Require [not] entity-name + [entity-name] ...dhB
    Tests whether an authenticated user is authorized by an authorization provider.
    <RequireAll> ... </RequireAll>dhB
    Enclose a group of authorization directives of which none +
    <RequireAll> ... </RequireAll>dhB
    Enclose a group of authorization directives of which none must fail and at least one must succeed for the enclosing directive to succeed.
    <RequireAny> ... </RequireAny>dhB
    Enclose a group of authorization directives of which one +
    <RequireAny> ... </RequireAny>dhB
    Enclose a group of authorization directives of which one must succeed for the enclosing directive to succeed.
    <RequireNone> ... </RequireNone>dhB
    Enclose a group of authorization directives of which none +
    <RequireNone> ... </RequireNone>dhB
    Enclose a group of authorization directives of which none must succeed for the enclosing directive to not fail.
    RewriteBase URL-pathdhE
    Sets the base URL for per-directory rewrites
    RewriteCond - TestString [!]CondPattern [flags]svdhE
    Defines a condition under which rewriting will take place +
    RewriteBase URL-pathdhE
    Sets the base URL for per-directory rewrites
    RewriteCond + TestString [!]CondPattern [flags]svdhE
    Defines a condition under which rewriting will take place
    RewriteEngine on|off off svdhE
    Enables or disables runtime rewriting engine
    RewriteMap MapName MapType:MapSource +
    RewriteEngine on|off off svdhE
    Enables or disables runtime rewriting engine
    RewriteMap MapName MapType:MapSource [MapTypeOptions] -svE
    Defines a mapping function for key-lookup
    RewriteOptions OptionssvdhE
    Sets some special options for the rewrite engine
    RewriteRule - [!]Pattern Substitution [flags]svdhE
    Defines rules for the rewriting engine
    RLimitCPU seconds|max [seconds|max]svdhC
    Limits the CPU consumption of processes launched +svE
    Defines a mapping function for key-lookup
    RewriteOptions OptionssvdhE
    Sets some special options for the rewrite engine
    RewriteRule + [!]Pattern Substitution [flags]svdhE
    Defines rules for the rewriting engine
    RLimitCPU seconds|max [seconds|max]svdhC
    Limits the CPU consumption of processes launched by Apache httpd children
    RLimitMEM bytes|max [bytes|max]svdhC
    Limits the memory consumption of processes launched +
    RLimitMEM bytes|max [bytes|max]svdhC
    Limits the memory consumption of processes launched by Apache httpd children
    RLimitNPROC number|max [number|max]svdhC
    Limits the number of processes that can be launched by +
    RLimitNPROC number|max [number|max]svdhC
    Limits the number of processes that can be launched by processes launched by Apache httpd children
    Satisfy Any|All All dhE
    Interaction between host-level access control and +
    Satisfy Any|All All dhD
    Interaction between host-level access control and user authentication
    ScoreBoardFile file-path apache_runtime_stat +sM
    Location of the file used to store coordination data for +
    ScoreBoardFile file-path apache_runtime_stat +sM
    Location of the file used to store coordination data for the child processes
    Script method cgi-scriptsvdB
    Activates a CGI script for a particular request +
    Script method cgi-scriptsvdB
    Activates a CGI script for a particular request method.
    ScriptAlias [URL-path] -file-path|directory-pathsvdB
    Maps a URL to a filesystem location and designates the +
    ScriptAlias [URL-path] +file-path|directory-pathsvdB
    Maps a URL to a filesystem location and designates the target as a CGI script
    ScriptAliasMatch regex -file-path|directory-pathsvB
    Maps a URL to a filesystem location using a regular expression +
    ScriptAliasMatch regex +file-path|directory-pathsvB
    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 svdhC
    Technique for locating the interpreter for CGI +
    ScriptInterpreterSource Registry|Registry-Strict|Script Script svdhC
    Technique for locating the interpreter for CGI scripts
    ScriptLog file-pathsvB
    Location of the CGI script error logfile
    ScriptLogBuffer bytes 1024 svB
    Maximum amount of PUT or POST requests that will be recorded +
    ScriptLog file-pathsvB
    Location of the CGI script error logfile
    ScriptLogBuffer bytes 1024 svB
    Maximum amount of PUT or POST requests that will be recorded in the scriptlog
    ScriptLogLength bytes 10385760 svB
    Size limit of the CGI script logfile
    ScriptSock file-path cgisock sB
    The filename prefix of the socket to use for communication with +
    ScriptLogLength bytes 10385760 svB
    Size limit of the CGI script logfile
    ScriptSock file-path cgisock sB
    The filename prefix of the socket to use for communication with the cgi daemon
    SecureListen [IP-address:]portnumber -Certificate-Name [MUTUAL]sB
    Enables SSL encryption for the specified port
    SeeRequestTail On|Off Off sC
    Determine if mod_status displays the first 63 characters +
    SecureListen [IP-address:]portnumber +Certificate-Name [MUTUAL]sB
    Enables SSL encryption for the specified port
    SeeRequestTail On|Off Off sC
    Determine if mod_status displays the first 63 characters of a request or the last 63, assuming the request itself is greater than 63 chars.
    SendBufferSize bytes 0 sM
    TCP buffer size
    ServerAdmin email-address|URLsvC
    Email address that the server includes in error +
    SendBufferSize bytes 0 sM
    TCP buffer size
    ServerAdmin email-address|URLsvC
    Email address that the server includes in error messages sent to the client
    ServerAlias hostname [hostname] ...vC
    Alternate names for a host used when matching requests +
    ServerAlias hostname [hostname] ...vC
    Alternate names for a host used when matching requests to name-virtual hosts
    ServerLimit numbersM
    Upper limit on configurable number of processes
    ServerName [scheme://]domain-name|ip-address[:port]svC
    Hostname and port that the server uses to identify +
    ServerLimit numbersM
    Upper limit on configurable number of processes
    ServerName [scheme://]domain-name|ip-address[:port]svC
    Hostname and port that the server uses to identify itself
    ServerPath URL-pathvC
    Legacy URL pathname for a name-based virtual host that +
    ServerPath URL-pathvC
    Legacy URL pathname for a name-based virtual host that is accessed by an incompatible browser
    ServerRoot directory-path /usr/local/apache sC
    Base directory for the server installation
    ServerSignature On|Off|EMail Off svdhC
    Configures the footer on server-generated documents
    ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full Full sC
    Configures the Server HTTP response +
    ServerRoot directory-path /usr/local/apache sC
    Base directory for the server installation
    ServerSignature On|Off|EMail Off svdhC
    Configures the footer on server-generated documents
    ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full Full sC
    Configures the Server HTTP response header
    Session On|Off Off svdhE
    Enables a session for the current directory or location
    SessionCookieMaxAge On|Off On svdhE
    Control whether session cookies have Max-Age transmitted to the client
    SessionCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session
    SessionCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session
    SessionCookieRemove On|Off Off svdhE
    Control for whether session cookies should be removed from incoming HTTP headers
    SessionCryptoCipher name aes256 svdhX
    The crypto cipher to be used to encrypt the session
    SessionCryptoDriver name [param[=value]]sX
    The crypto driver to be used to encrypt the session
    SessionCryptoPassphrase secret [ secret ... ] svdhX
    The key used to encrypt the session
    SessionCryptoPassphraseFile filenamesvdX
    File containing keys used to encrypt the session
    SessionDBDCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session ID
    SessionDBDCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session ID
    SessionDBDCookieRemove On|Off On svdhE
    Control for whether session ID cookies should be removed from incoming HTTP headers
    SessionDBDDeleteLabel label deletesession svdhE
    The SQL query to use to remove sessions from the database
    SessionDBDInsertLabel label insertsession svdhE
    The SQL query to use to insert sessions into the database
    SessionDBDPerUser On|Off Off svdhE
    Enable a per user session
    SessionDBDSelectLabel label selectsession svdhE
    The SQL query to use to select sessions from the database
    SessionDBDUpdateLabel label updatesession svdhE
    The SQL query to use to update existing sessions in the database
    SessionEnv On|Off Off svdhE
    Control whether the contents of the session are written to the +
    Session On|Off Off svdhE
    Enables a session for the current directory or location
    SessionCookieMaxAge On|Off On svdhE
    Control whether session cookies have Max-Age transmitted to the client
    SessionCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session
    SessionCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session
    SessionCookieRemove On|Off Off svdhE
    Control for whether session cookies should be removed from incoming HTTP headers
    SessionCryptoCipher name aes256 svdhX
    The crypto cipher to be used to encrypt the session
    SessionCryptoDriver name [param[=value]]sX
    The crypto driver to be used to encrypt the session
    SessionCryptoPassphrase secret [ secret ... ] svdhX
    The key used to encrypt the session
    SessionCryptoPassphraseFile filenamesvdX
    File containing keys used to encrypt the session
    SessionDBDCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session ID
    SessionDBDCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session ID
    SessionDBDCookieRemove On|Off On svdhE
    Control for whether session ID cookies should be removed from incoming HTTP headers
    SessionDBDDeleteLabel label deletesession svdhE
    The SQL query to use to remove sessions from the database
    SessionDBDInsertLabel label insertsession svdhE
    The SQL query to use to insert sessions into the database
    SessionDBDPerUser On|Off Off svdhE
    Enable a per user session
    SessionDBDSelectLabel label selectsession svdhE
    The SQL query to use to select sessions from the database
    SessionDBDUpdateLabel label updatesession svdhE
    The SQL query to use to update existing sessions in the database
    SessionEnv On|Off Off svdhE
    Control whether the contents of the session are written to the HTTP_SESSION environment variable
    SessionExclude pathsvdhE
    Define URL prefixes for which a session is ignored
    SessionExpiryUpdateInterval interval 0 (always update) svdhE
    Define the number of seconds a session's expiry may change without +
    SessionExclude pathsvdhE
    Define URL prefixes for which a session is ignored
    SessionExpiryUpdateInterval interval 0 (always update) svdhE
    Define the number of seconds a session's expiry may change without the session being updated
    SessionHeader headersvdhE
    Import session updates from a given HTTP response header
    SessionInclude pathsvdhE
    Define URL prefixes for which a session is valid
    SessionMaxAge maxage 0 svdhE
    Define a maximum age in seconds for a session
    SetEnv env-variable [value]svdhB
    Sets environment variables
    SetEnvIf attribute +
    SessionHeader headersvdhE
    Import session updates from a given HTTP response header
    SessionInclude pathsvdhE
    Define URL prefixes for which a session is valid
    SessionMaxAge maxage 0 svdhE
    Define a maximum age in seconds for a session
    SetEnv env-variable [value]svdhB
    Sets environment variables
    SetEnvIf attribute regex [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request + [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request
    SetEnvIfExpr expr +
    SetEnvIfExpr expr [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on an ap_expr expression
    SetEnvIfNoCase attribute regex + [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on an ap_expr expression
    SetEnvIfNoCase attribute regex [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request + [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request without respect to case
    SetHandler handler-name|none|expressionsvdhC
    Forces all matching files to be processed by a +
    SetHandler handler-name|none|expressionsvdhC
    Forces all matching files to be processed by a handler
    SetInputFilter filter[;filter...]svdhC
    Sets the filters that will process client requests and POST +
    SetInputFilter filter[;filter...]svdhC
    Sets the filters that will process client requests and POST input
    SetOutputFilter filter[;filter...]svdhC
    Sets the filters that will process responses from the +
    SetOutputFilter filter[;filter...]svdhC
    Sets the filters that will process responses from the server
    SSIEndTag tag "-->" svB
    String that ends an include element
    SSIErrorMsg message "[an error occurred +svdhB
    Error message displayed when there is an SSI +
    SSIEndTag tag "-->" svB
    String that ends an include element
    SSIErrorMsg message "[an error occurred +svdhB
    Error message displayed when there is an SSI error
    SSIETag on|off off dhB
    Controls whether ETags are generated by the server.
    SSILastModified on|off off dhB
    Controls whether Last-Modified headers are generated by the +
    SSIETag on|off off dhB
    Controls whether ETags are generated by the server.
    SSILastModified on|off off dhB
    Controls whether Last-Modified headers are generated by the server.
    SSILegacyExprParser on|off off dhB
    Enable compatibility mode for conditional expressions.
    SSIStartTag tag "<!--#" svB
    String that starts an include element
    SSITimeFormat formatstring "%A, %d-%b-%Y %H:%M +svdhB
    Configures the format in which date strings are +
    SSILegacyExprParser on|off off dhB
    Enable compatibility mode for conditional expressions.
    SSIStartTag tag "<!--#" svB
    String that starts an include element
    SSITimeFormat formatstring "%A, %d-%b-%Y %H:%M +svdhB
    Configures the format in which date strings are displayed
    SSIUndefinedEcho string "(none)" svdhB
    String displayed when an unset variable is echoed
    SSLCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates +
    SSIUndefinedEcho string "(none)" svdhB
    String displayed when an unset variable is echoed
    SSLCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates for Client Auth
    SSLCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for +
    SSLCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for Client Auth
    SSLCACertificateURI urisvE
    Server CA certificate store for Client Authentication
    SSLCADNRequestFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates for defining acceptable CA names
    SSLCADNRequestPath directory-pathsvE
    Directory of PEM-encoded CA Certificates for defining acceptable CA names
    SSLCARevocationCheck chain|leaf|none [flags ...] none svE
    Enable CRL-based revocation checking
    SSLCARevocationFile file-pathsvE
    File of concatenated PEM-encoded CA CRLs for +
    SSLCADNRequestURI urisvE
    certificate store of CA Certificates for defining +acceptable CA names
    SSLCARevocationCheck chain|leaf|none [flags ...] none svE
    Enable CRL-based revocation checking
    SSLCARevocationFile file-pathsvE
    File of concatenated PEM-encoded CA CRLs for Client Auth
    SSLCARevocationPath directory-pathsvE
    Directory of PEM-encoded CA CRLs for +
    SSLCARevocationPath directory-pathsvE
    Directory of PEM-encoded CA CRLs for Client Auth
    SSLCARevocationURI urisvE
    Server CA certificate revocation list store for Client Authentication
    SSLCertificateChainFile file-pathsvE
    File of PEM-encoded Server CA Certificates
    SSLCertificateFile file-path|certidsvE
    Server PEM-encoded X.509 certificate data file or token identifier
    SSLCertificateKeyFile file-path|keyidsvE
    Server PEM-encoded private key file
    SSLCipherSuite [protocol] cipher-spec DEFAULT (depends on +svdhE
    Cipher Suite available for negotiation in SSL +
    SSLCertificateURI urisvE
    Server certificate and key store
    SSLCipherSuite [protocol] cipher-spec DEFAULT (depends on +svdhE
    Cipher Suite available for negotiation in SSL handshake
    SSLClientHelloVars on|off off svE
    Enable collection of ClientHello variables
    SSLCompression on|off off svE
    Enable compression on the SSL level
    SSLCryptoDevice engine builtin sE
    Enable use of a cryptographic hardware accelerator
    SSLECHKeyDir dirnamesE
    Load the set of Encrypted Client Hello (ECH) PEM files in the named directory
    SSLEngine on|off off svE
    SSL Engine Operation Switch
    SSLFIPS on|off off sE
    SSL FIPS mode Switch
    SSLHonorCipherOrder on|off off svE
    Option to prefer the server's cipher preference order
    SSLOCSPDefaultResponder urisvE
    Set the default responder URI for OCSP validation
    SSLOCSPEnable on|leaf|off [flags] off svE
    Enable OCSP validation of the client certificate chain
    SSLOCSPNoverify on|off off svE
    skip the OCSP responder certificates verification
    SSLOCSPOverrideResponder on|off off svE
    Force use of the default responder URI for OCSP validation
    SSLOCSPProxyURL urlsvE
    Proxy URL to use for OCSP requests
    SSLOCSPResponderCertificateFile filesvE
    Set of trusted PEM encoded OCSP responder certificates
    SSLOCSPResponderTimeout seconds 10 svE
    Timeout for OCSP queries
    SSLOCSPResponseMaxAge seconds -1 svE
    Maximum allowable age for OCSP responses
    SSLOCSPResponseTimeSkew seconds 300 svE
    Maximum allowable time skew for OCSP response validation
    SSLOCSPUseRequestNonce on|off on svE
    Use a nonce within OCSP queries
    SSLOpenSSLConfCmd command-name command-valuesvE
    Configure OpenSSL parameters through its SSL_CONF API
    SSLOptions [+|-]option ...svdhE
    Configure various SSL engine run-time options
    SSLPassPhraseDialog type builtin sE
    Type of pass phrase dialog for encrypted private +
    SSLClientHelloVars on|off off svE
    Enable collection of ClientHello variables
    SSLCompression on|off off svE
    Enable compression on the SSL level
    SSLCryptoDevice engine builtin sE
    Enable use of a cryptographic hardware accelerator
    SSLECHKeyDir dirnamesE
    Load the set of Encrypted Client Hello (ECH) PEM files in the named directory
    SSLEngine on|off off svE
    SSL Engine Operation Switch
    SSLFIPS on|off off sE
    SSL FIPS mode Switch
    SSLHonorCipherOrder on|off off svE
    Option to prefer the server's cipher preference order
    SSLOCSPDefaultResponder urisvE
    Set the default responder URI for OCSP validation
    SSLOCSPEnable on|leaf|off [flags] off svE
    Enable OCSP validation of the client certificate chain
    SSLOCSPNoverify on|off off svE
    skip the OCSP responder certificates verification
    SSLOCSPOverrideResponder on|off off svE
    Force use of the default responder URI for OCSP validation
    SSLOCSPProxyURL urlsvE
    Proxy URL to use for OCSP requests
    SSLOCSPResponderCertificateFile filesvE
    Set of trusted PEM encoded OCSP responder certificates
    SSLOCSPResponderTimeout seconds 10 svE
    Timeout for OCSP queries
    SSLOCSPResponseMaxAge seconds -1 svE
    Maximum allowable age for OCSP responses
    SSLOCSPResponseTimeSkew seconds 300 svE
    Maximum allowable time skew for OCSP response validation
    SSLOCSPUseRequestNonce on|off on svE
    Use a nonce within OCSP queries
    SSLOpenSSLConfCmd command-name command-valuesvE
    Configure OpenSSL parameters through its SSL_CONF API
    SSLOptions [+|-]option ...svdhE
    Configure various SSL engine run-time options
    SSLPassPhraseDialog type builtin sE
    Type of pass phrase dialog for encrypted private keys
    SSLPolicy namesvE
    Apply a SSLPolicy by name
    SSLProtocol [+|-]protocol ... all -SSLv3 svE
    Configure usable SSL/TLS protocol versions
    SSLProxyCACertificateFile file-pathsvpE
    File of concatenated PEM-encoded CA Certificates +
    SSLPolicy namesvE
    Apply a SSLPolicy by name
    SSLProtocol [+|-]protocol ... all -SSLv3 svE
    Configure usable SSL/TLS protocol versions
    SSLProxyCACertificateFile file-pathsvpE
    File of concatenated PEM-encoded CA Certificates for Remote Server Auth
    SSLProxyCACertificatePath directory-pathsvpE
    Directory of PEM-encoded CA Certificates for +
    SSLProxyCACertificatePath directory-pathsvpE
    Directory of PEM-encoded CA Certificates for Remote Server Auth
    SSLProxyCACertificateURI urisvpE
    Proxy CA certificate store for Remote Server Auth
    SSLProxyCARevocationCheck chain|leaf|none none svpE
    Enable CRL-based revocation checking for Remote Server Auth
    SSLProxyCARevocationFile file-pathsvpE
    File of concatenated PEM-encoded CA CRLs for Remote Server Auth
    SSLProxyCARevocationPath directory-pathsvpE
    Directory of PEM-encoded CA CRLs for Remote Server Auth
    SSLProxyCheckPeerCN on|off on svpE
    Whether to check the remote server certificate's CN field +
    SSLProxyCARevocationURI urisvpE
    Proxy CA certificate revocation list store for Remote Server Auth
    SSLProxyCheckPeerCN on|off on svpE
    Whether to check the remote server certificate's CN field
    SSLProxyCheckPeerExpire on|off on svpE
    Whether to check if remote server certificate is expired +
    SSLProxyCheckPeerExpire on|off on svpE
    Whether to check if remote server certificate is expired
    SSLProxyCheckPeerName on|off on svpE
    Configure host name checking for remote server certificates +
    SSLProxyCheckPeerName on|off on svpE
    Configure host name checking for remote server certificates
    SSLProxyCipherSuite [protocol] cipher-spec ALL:!ADH:RC4+RSA:+H +svpE
    Cipher Suite available for negotiation in SSL +
    SSLProxyCipherSuite [protocol] cipher-spec ALL:!ADH:RC4+RSA:+H +svpE
    Cipher Suite available for negotiation in SSL proxy handshake
    SSLProxyEngine on|off off svpE
    SSL Proxy Engine Operation Switch
    SSLProxyMachineCertificateChainFile filenamesvpE
    File of concatenated PEM-encoded CA certificates to be used by the proxy for choosing a certificate
    SSLProxyMachineCertificateFile filenamesvpE
    File of concatenated PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificatePath directorysvpE
    Directory of PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyEngine on|off off svpE
    SSL Proxy Engine Operation Switch
    SSLProxyMachineCertificateChainFile filenamesvpE
    File of concatenated PEM-encoded CA certificates to be used by the proxy for choosing a certificate
    SSLProxyMachineCertificateFile filenamesvpE
    File of concatenated PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificatePath directorysvpE
    Directory of PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificateURI urisvpE
    Proxy certificate and key stores
    SSLProxyProtocol [+|-]protocol ... all -SSLv3 svpE
    Configure usable SSL protocol flavors for proxy usage
    SSLProxyVerify level none svpE
    Type of remote server Certificate verification
    SSLProxyVerifyDepth number 1 svpE
    Maximum depth of CA Certificates in Remote Server @@ -1299,15 +1308,15 @@ port
    UserDir directory-filename [directory-filename] ... svB
    Location of the user-specific directories
    VHostCGIMode On|Off|Secure On vX
    Determines whether the virtualhost can run +
    VHostCGIMode On|Off|Secure On vD
    Determines whether the virtualhost can run subprocesses, and the privileges available to subprocesses.
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...vX
    Assign arbitrary privileges to subprocesses created +
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...vD
    Assign arbitrary privileges to subprocesses created by a virtual host.
    VHostGroup unix-groupidvX
    Sets the Group ID under which a virtual host runs.
    VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...vX
    Assign arbitrary privileges to a virtual host.
    VHostSecure On|Off On vX
    Determines whether the server runs with enhanced security +
    VHostGroup unix-groupidvD
    Sets the Group ID under which a virtual host runs.
    VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...vD
    Assign arbitrary privileges to a virtual host.
    VHostSecure On|Off On vD
    Determines whether the server runs with enhanced security for the virtualhost.
    VHostUser unix-useridvX
    Sets the User ID under which a virtual host runs.
    VHostUser unix-useridvD
    Sets the User ID under which a virtual host runs.
    VirtualDocumentRoot interpolated-directory|none none svE
    Dynamically configure the location of the document root for a given virtual host
    VirtualDocumentRootIP interpolated-directory|none none svE
    Dynamically configure the location of the document root diff --git a/docs/manual/mod/quickreference.html.es.utf8 b/docs/manual/mod/quickreference.html.es.utf8 index 8019db04ad..9dda9a58ef 100644 --- a/docs/manual/mod/quickreference.html.es.utf8 +++ b/docs/manual/mod/quickreference.html.es.utf8 @@ -388,20 +388,20 @@ switch before dumping core
    CryptoIV value none svdhE
    IV (Initialization Vector) to be used by the crypto filter
    CryptoKey value none svdhE
    Key to be used by the crypto filter
    CryptoSize integer 131072 svdhE
    Maximum size in bytes to buffer by the crypto filter
    CTAuditStorage directorysE
    Existing directory where data for off-line audit will be stored
    CTLogClient executablesE
    Location of certificate-transparency log client tool
    CTLogConfigDB filenamesE
    Log configuration database supporting dynamic updates
    CTMaxSCTAge num-secondssE
    Maximum age of SCT obtained from a log, before it will be +
    CTAuditStorage directorysD
    Existing directory where data for off-line audit will be stored
    CTLogClient executablesD
    Location of certificate-transparency log client tool
    CTLogConfigDB filenamesD
    Log configuration database supporting dynamic updates
    CTMaxSCTAge num-secondssD
    Maximum age of SCT obtained from a log, before it will be refreshed
    CTProxyAwareness oblivious|aware|requiresvE
    Level of CT awareness and enforcement for a proxy +
    CTProxyAwareness oblivious|aware|requiresvD
    Level of CT awareness and enforcement for a proxy
    CTSCTStorage directorysE
    Existing directory where SCTs are managed
    CTServerHelloSCTLimit limitsE
    Limit on number of SCTs that can be returned in +
    CTSCTStorage directorysD
    Existing directory where SCTs are managed
    CTServerHelloSCTLimit limitsD
    Limit on number of SCTs that can be returned in ServerHello
    CTStaticLogConfig log-id|- public-key-file|- 1|0|- min-timestamp|- max-timestamp|- -log-URL|-sE
    Static configuration of information about a log
    CTStaticSCTs certificate-pem-file sct-directorysE
    Static configuration of one or more SCTs for a server certificate +log-URL|-sD
    Static configuration of information about a log
    CTStaticSCTs certificate-pem-file sct-directorysD
    Static configuration of one or more SCTs for a server certificate
    CustomLog file|pipe|provider format|nickname @@ -471,7 +471,7 @@ the contents of file-system directories matching a regular expression.
    DirectorySlash On|Off|NotFound On svdhB
    Toggle trailing slash redirects on or off
    DocumentRoot directory-path /usr/local/apache/h +svC
    Directory that forms the main document tree visible from the web
    DTracePrivileges On|Off Off sX
    Determines whether the privileges required by dtrace are enabled.
    DTracePrivileges On|Off Off sD
    Determines whether the privileges required by dtrace are enabled.
    DumpIOInput On|Off Off sE
    Dump all input data to the error log
    DumpIOOutput On|Off Off sE
    Dump all output data to the error log
    <Else> ... </Else>svdhC
    Contains directives that apply only if the condition of a @@ -607,10 +607,10 @@ presence or absence of a specific module
    <IfVersion [[!]operator] version> ... </IfVersion>svdhE
    contains version dependent configuration
    ImapBase map|referer|URL http://servername/ svdhB
    Default base for imagemap files
    ImapDefault error|nocontent|map|referer|URL nocontent svdhB
    Default action when an imagemap is called with coordinates +
    ImapBase map|referer|URL http://servername/ svdhD
    Default base for imagemap files
    ImapDefault error|nocontent|map|referer|URL nocontent svdhD
    Default action when an imagemap is called with coordinates that are not explicitly mapped
    ImapMenu none|formatted|semiformatted|unformatted formatted svdhB
    Action if no coordinates are given when calling +
    ImapMenu none|formatted|semiformatted|unformatted formatted svdhD
    Action if no coordinates are given when calling an imagemap
    Include [optional|strict] file-path|directory-path|wildcardsvdC
    Includes other configuration files from within the server configuration files
    MDDriveMode always|auto|manual auto sX
    former name of MDRenewMode.
    MDExternalAccountBinding key-id hmac-64 | none | file none sX
    Set the external account binding keyid and hmac values to use at CA
    MDHttpProxy urlsX
    Define a proxy for outgoing connections.
    MDInitialDelay duration 0s sX
    How long to delay the first certificate check.
    MDMatchNames all|servernames all sX
    Determines how DNS names are matched to vhosts
    MDMember hostnamesX
    Additional hostname for the managed domain.
    MDMembers auto|manual auto sX
    Control if the alias domain names are automatically added.
    MDMessageCmd path-to-cmd optional-argssX
    Handle events for Manage Domains
    MDMustStaple on|off off sX
    Control if new certificates carry the OCSP Must Staple flag.
    MDNotifyCmd path [ args ]sX
    Run a program when a Managed Domain is ready.
    MDomain dns-name [ other-dns-name... ] [auto|manual]sX
    Define list of domain names that belong to one group.
    <MDomainSet dns-name [ other-dns-name... ]>...</MDomainSet>sX
    Container for directives applied to the same managed domains.
    MDPortMap map1 [ map2 ] http:80 https:443 sX
    Map external to internal ports for domain ownership verification.
    MDPrivateKeys type [ params... ] RSA 2048 sX
    Set type and size of the private keys generated.
    MDProfile namesX
    Use a specific ACME profile from the CA
    MDProfileMandatory on|off off sX
    Control if an MDProfile is mandatory.
    MDRenewMode always|auto|manual auto sX
    Controls if certificates shall be renewed.
    MDRenewViaARI on|off on sX
    usage of the ACME ARI extension (rfc9773).
    MDRenewWindow duration 33% sX
    Control when a certificate will be renewed.
    MDRequireHttps off|temporary|permanent off sX
    Redirects http: traffic to https: for Managed Domains.
    MDRetryDelay duration 30s sX
    Time length for first retry, doubled on every consecutive error.
    MDRetryFailover number 13 sX
    The number of errors before a failover to another CA is triggered
    MDServerStatus on|off off sX
    Control if Managed Domain information is added to server-status.
    MDStapleOthers on|off on sX
    Enable stapling for certificates not managed by mod_md.
    MDStapling on|off off sX
    Enable stapling for all or a particular MDomain.
    MDStaplingKeepResponse duration 7d sX
    Controls when old responses should be removed.
    MDStaplingRenewWindow duration 33% sX
    Control when the stapling responses will be renewed.
    MDStoreDir path md sX
    Path on the local file system to store the Managed Domains data.
    MDStoreLocks on|off|duration off sX
    Configure locking of store for updates
    MDWarnWindow duration 10% sX
    Define the time window when you want to be warned about an expiring certificate.
    MemcacheConnTTL num[units] 15s svE
    Keepalive time for idle connections
    MergeSlashes ON|OFF ON svC
    Controls whether the server merges consecutive slashes in URLs. +
    MDHttpProxyCACertificateFile path-to-pem-file none sX
    Sets the root (CA) certificates to use for TLS connections to the http-proxy.
    MDInitialDelay duration 0s sX
    How long to delay the first certificate check.
    MDMatchNames all|servernames all sX
    Determines how DNS names are matched to vhosts
    MDMember hostnamesX
    Additional hostname for the managed domain.
    MDMembers auto|manual auto sX
    Control if the alias domain names are automatically added.
    MDMessageCmd path-to-cmd optional-argssX
    Handle events for Manage Domains
    MDMustStaple on|off off sX
    Control if new certificates carry the OCSP Must Staple flag.
    MDNotifyCmd path [ args ]sX
    Run a program when a Managed Domain is ready.
    MDomain dns-name [ other-dns-name... ] [auto|manual]sX
    Define list of domain names that belong to one group.
    <MDomainSet dns-name [ other-dns-name... ]>...</MDomainSet>sX
    Container for directives applied to the same managed domains.
    MDPortMap map1 [ map2 ] http:80 https:443 sX
    Map external to internal ports for domain ownership verification.
    MDPrivateKeys type [ params... ] RSA 2048 sX
    Set type and size of the private keys generated.
    MDProfile namesX
    Use a specific ACME profile from the CA
    MDProfileMandatory on|off off sX
    Control if an MDProfile is mandatory.
    MDRenewMode always|auto|manual auto sX
    Controls if certificates shall be renewed.
    MDRenewViaARI on|off on sX
    usage of the ACME ARI extension (rfc9773).
    MDRenewWindow duration 33% sX
    Control when a certificate will be renewed.
    MDRequireHttps off|temporary|permanent off sX
    Redirects http: traffic to https: for Managed Domains.
    MDRetryDelay duration 30s sX
    Time length for first retry, doubled on every consecutive error.
    MDRetryFailover number 13 sX
    The number of errors before a failover to another CA is triggered
    MDServerStatus on|off off sX
    Control if Managed Domain information is added to server-status.
    MDStapleOthers on|off on sX
    Enable stapling for certificates not managed by mod_md.
    MDStapling on|off off sX
    Enable stapling for all or a particular MDomain.
    MDStaplingKeepResponse duration 7d sX
    Controls when old responses should be removed.
    MDStaplingRenewWindow duration 33% sX
    Control when the stapling responses will be renewed.
    MDStoreDir path md sX
    Path on the local file system to store the Managed Domains data.
    MDStoreLocks on|off|duration off sX
    Configure locking of store for updates
    MDWarnWindow duration 10% sX
    Define the time window when you want to be warned about an expiring certificate.
    MemcacheConnTTL num[units] 15s svE
    Keepalive time for idle connections
    MergeSlashes ON|OFF ON svC
    Controls whether the server merges consecutive slashes in URLs.
    MergeTrailers [on|off] off svC
    Determines whether trailers are merged into headers
    MetaDir directory .web svdhE
    Name of the directory to find CERN-style meta information +
    MergeTrailers [on|off] off svC
    Determines whether trailers are merged into headers
    MetaDir directory .web svdhD
    Name of the directory to find CERN-style meta information files
    MetaFiles on|off off svdhE
    Activates CERN meta-file processing
    MetaSuffix suffix .meta svdhE
    File name suffix for the file containing CERN-style +
    MetaFiles on|off off svdhD
    Activates CERN meta-file processing
    MetaSuffix suffix .meta svdhD
    File name suffix for the file containing CERN-style meta information
    MimeMagicDecompression On|Off Off svE
    Enable decompression of compressed files for MIME type detection
    MimeMagicFile file-pathsvE
    Enable MIME-type determination based on file contents +
    MimeMagicDecompression On|Off Off svE
    Enable decompression of compressed files for MIME type detection
    MimeMagicFile file-pathsvE
    Enable MIME-type determination based on file contents using the specified magic file
    MimeOptions option [option] ...svdhB
    Configures mod_mime behavior
    MinSpareServers number 5 sM
    Minimum number of idle child server processes
    MinSpareThreads numbersM
    Minimum number of idle threads available to handle request +
    MimeOptions option [option] ...svdhB
    Configures mod_mime behavior
    MinSpareServers number 5 sM
    Minimum number of idle child server processes
    MinSpareThreads numbersM
    Minimum number of idle threads available to handle request spikes
    MMapFile file-path [file-path] ...sX
    Map a list of files into memory at startup time
    ModemStandard V.21|V.26bis|V.32|V.34|V.92dX
    Modem standard to simulate
    ModMimeUsePathInfo On|Off Off dB
    Tells mod_mime to treat path_info +
    MMapFile file-path [file-path] ...sX
    Map a list of files into memory at startup time
    ModemStandard V.21|V.26bis|V.32|V.34|V.92dX
    Modem standard to simulate
    ModMimeUsePathInfo On|Off Off dB
    Tells mod_mime to treat path_info components as part of the filename
    MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers -[Handlers|Filters] NegotiatedOnly svdhB
    The types of files that will be included when searching for +
    MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers +[Handlers|Filters] NegotiatedOnly svdhB
    The types of files that will be included when searching for a matching file with MultiViews
    Mutex mechanism [default|mutex-name] ... [OmitPID] default sC
    Configures mutex mechanism and lock file directory for all +
    Mutex mechanism [default|mutex-name] ... [OmitPID] default sC
    Configures mutex mechanism and lock file directory for all or specified mutexes
    NameVirtualHost addr[:port]sC
    Designates an IP address for name-virtual +
    NameVirtualHost addr[:port]sC
    Designates an IP address for name-virtual hosting
    NoProxy host [host] ...svE
    Hosts, domains, or networks that will be connected to +
    NoProxy host [host] ...svE
    Hosts, domains, or networks that will be connected to directly
    NWSSLTrustedCerts filename [filename] ...sB
    List of additional client certificates
    NWSSLUpgradeable [IP-address:]portnumbersB
    Allows a connection to be upgraded to an SSL connection upon request
    Options - [+|-]option [[+|-]option] ... All svdhC
    Configures what features are available in a particular +
    NWSSLTrustedCerts filename [filename] ...sB
    List of additional client certificates
    NWSSLUpgradeable [IP-address:]portnumbersB
    Allows a connection to be upgraded to an SSL connection upon request
    Options + [+|-]option [[+|-]option] ... All svdhC
    Configures what features are available in a particular directory
    Order ordering Deny,Allow dhE
    Controla el estado por defecto del acceso y el orden en que se evalúan +
    Order ordering Deny,Allow dhE
    Controla el estado por defecto del acceso y el orden en que se evalúan Allow y Deny.
    OutputSed sed-commanddhX
    Sed command for filtering response content
    PassEnv env-variable [env-variable] -...svdhB
    Passes environment variables from the shell
    PidFile filename httpd.pid sM
    File where the server records the process ID +
    OutputSed sed-commanddhX
    Sed command for filtering response content
    PassEnv env-variable [env-variable] +...svdhB
    Passes environment variables from the shell
    PidFile filename httpd.pid sM
    File where the server records the process ID of the daemon
    PolicyConditional ignore|log|enforcesvdE
    Enable the conditional request policy.
    PolicyConditionalURL urlsvdE
    URL describing the conditional request policy.
    PolicyEnvironment variable log-value ignore-valuesvdE
    Override policies based on an environment variable.
    PolicyFilter on|offsvdE
    Enable or disable policies for the given URL space.
    PolicyKeepalive ignore|log|enforcesvdE
    Enable the keepalive policy.
    PolicyKeepaliveURL urlsvdE
    URL describing the keepalive policy.
    PolicyLength ignore|log|enforcesvdE
    Enable the content length policy.
    PolicyLengthURL urlsvdE
    URL describing the content length policy.
    PolicyMaxage ignore|log|enforce agesvdE
    Enable the caching minimum max-age policy.
    PolicyMaxageURL urlsvdE
    URL describing the caching minimum freshness lifetime policy.
    PolicyNocache ignore|log|enforcesvdE
    Enable the caching no-cache policy.
    PolicyNocacheURL urlsvdE
    URL describing the caching no-cache policy.
    PolicyType ignore|log|enforce type [ type [ ... ]]svdE
    Enable the content type policy.
    PolicyTypeURL urlsvdE
    URL describing the content type policy.
    PolicyValidation ignore|log|enforcesvdE
    Enable the validation policy.
    PolicyValidationURL urlsvdE
    URL describing the content type policy.
    PolicyVary ignore|log|enforce header [ header [ ... ]]svdE
    Enable the Vary policy.
    PolicyVaryURL urlsvdE
    URL describing the content type policy.
    PolicyVersion ignore|log|enforce HTTP/0.9|HTTP/1.0|HTTP/1.1svdE
    Enable the version policy.
    PolicyVersionURL urlsvdE
    URL describing the minimum request HTTP version policy.
    PollersPerChild number 0 sM
    Number of poll threads per child process
    PrivilegesMode FAST|SECURE|SELECTIVE FAST svdX
    Trade off processing speed and efficiency vs security against +
    PolicyConditional ignore|log|enforcesvdE
    Enable the conditional request policy.
    PolicyConditionalURL urlsvdE
    URL describing the conditional request policy.
    PolicyEnvironment variable log-value ignore-valuesvdE
    Override policies based on an environment variable.
    PolicyFilter on|offsvdE
    Enable or disable policies for the given URL space.
    PolicyKeepalive ignore|log|enforcesvdE
    Enable the keepalive policy.
    PolicyKeepaliveURL urlsvdE
    URL describing the keepalive policy.
    PolicyLength ignore|log|enforcesvdE
    Enable the content length policy.
    PolicyLengthURL urlsvdE
    URL describing the content length policy.
    PolicyMaxage ignore|log|enforce agesvdE
    Enable the caching minimum max-age policy.
    PolicyMaxageURL urlsvdE
    URL describing the caching minimum freshness lifetime policy.
    PolicyNocache ignore|log|enforcesvdE
    Enable the caching no-cache policy.
    PolicyNocacheURL urlsvdE
    URL describing the caching no-cache policy.
    PolicyType ignore|log|enforce type [ type [ ... ]]svdE
    Enable the content type policy.
    PolicyTypeURL urlsvdE
    URL describing the content type policy.
    PolicyValidation ignore|log|enforcesvdE
    Enable the validation policy.
    PolicyValidationURL urlsvdE
    URL describing the content type policy.
    PolicyVary ignore|log|enforce header [ header [ ... ]]svdE
    Enable the Vary policy.
    PolicyVaryURL urlsvdE
    URL describing the content type policy.
    PolicyVersion ignore|log|enforce HTTP/0.9|HTTP/1.0|HTTP/1.1svdE
    Enable the version policy.
    PolicyVersionURL urlsvdE
    URL describing the minimum request HTTP version policy.
    PollersPerChild number 0 sM
    Number of poll threads per child process
    PrivilegesMode FAST|SECURE|SELECTIVE FAST svdD
    Trade off processing speed and efficiency vs security against malicious privileges-aware code.
    Protocol protocolsvC
    Protocol for a listening socket
    ProtocolEcho On|Off Off svX
    Turn the echo server on or off
    Protocols protocol ... http/1.1 svC
    Protocols available for a server/virtual host
    ProtocolsHonorOrder On|Off On svC
    Determines if order of Protocols determines precedence during negotiation
    <Proxy wildcard-url> ...</Proxy>svE
    Container for directives applied to proxied resources
    Proxy100Continue Off|On On svdE
    Forward 100-continue expectation to the origin server
    ProxyAddHeaders Off|On On svdE
    Add proxy information in X-Forwarded-* headers
    ProxyAsyncDelay time[s]svdE
    Time to poll synchronously before handing a connection to the +
    Protocol protocolsvC
    Protocol for a listening socket
    ProtocolEcho On|Off Off svX
    Turn the echo server on or off
    Protocols protocol ... http/1.1 svC
    Protocols available for a server/virtual host
    ProtocolsHonorOrder On|Off On svC
    Determines if order of Protocols determines precedence during negotiation
    <Proxy wildcard-url> ...</Proxy>svE
    Container for directives applied to proxied resources
    Proxy100Continue Off|On On svdE
    Forward 100-continue expectation to the origin server
    ProxyAddHeaders Off|On On svdE
    Add proxy information in X-Forwarded-* headers
    ProxyAsyncDelay time[s]svdE
    Time to poll synchronously before handing a connection to the MPM for asynchronous processing
    ProxyAsyncIdleTimeout time[s]svdE
    Inactivity timeout for asynchronous proxy connections
    ProxyBadHeader IsError|Ignore|StartBody IsError svE
    Determines how to handle bad header lines in a +
    ProxyAsyncIdleTimeout time[s]svdE
    Inactivity timeout for asynchronous proxy connections
    ProxyBadHeader IsError|Ignore|StartBody IsError svE
    Determines how to handle bad header lines in a response
    ProxyBeaconAddress address:portsvE
    Address of the reverse proxy to which a backend sends its +
    ProxyBeaconAddress address:portsvE
    Address of the reverse proxy to which a backend sends its announcements
    ProxyBeaconAdvertise urlsvE
    The routable URL a backend announces to the reverse proxy
    ProxyBeaconBalancer namesvE
    Name of the balancer that announced backends are added to
    ProxyBeaconInterval interval 5 svE
    How often a backend publishes its announcement
    ProxyBeaconListen [address][:port]svE
    Address on which the reverse proxy receives backend +
    ProxyBeaconAdvertise urlsvE
    The routable URL a backend announces to the reverse proxy
    ProxyBeaconBalancer namesvE
    Name of the balancer that announced backends are added to
    ProxyBeaconInterval interval 5 svE
    How often a backend publishes its announcement
    ProxyBeaconListen [address][:port]svE
    Address on which the reverse proxy receives backend beacons
    ProxyBeaconMaxSkew intervalsvE
    Maximum allowed age of a signed announcement
    ProxyBeaconSecret secretsvE
    Pre-shared secret used to authenticate announcements
    ProxyBeaconTimeout interval 0 svE
    How long the proxy waits, without an announcement, before a backend +
    ProxyBeaconMaxSkew intervalsvE
    Maximum allowed age of a signed announcement
    ProxyBeaconSecret secretsvE
    Pre-shared secret used to authenticate announcements
    ProxyBeaconTimeout interval 0 svE
    How long the proxy waits, without an announcement, before a backend is taken out of rotation
    ProxyBlock *|hostname|partial-hostname [hostname|partial-hostname]...svE
    Disallow proxy requests to certain hosts
    ProxyDomain DomainsvE
    Default domain name for proxied requests
    ProxyErrorOverride Off|On [code ...] Off svdE
    Override error pages for proxied content
    ProxyExpressDBMFile pathnamesvE
    Pathname to DBM file.
    ProxyExpressDBMType type default svE
    DBM type of file.
    ProxyExpressEnable on|off off svE
    Enable the module functionality.
    ProxyFCGIBackendType FPM|GENERIC FPM svdhE
    Specify the type of backend FastCGI application
    ProxyFCGISetEnvIf conditional-expression +
    ProxyBlock *|hostname|partial-hostname [hostname|partial-hostname]...svE
    Disallow proxy requests to certain hosts
    ProxyDomain DomainsvE
    Default domain name for proxied requests
    ProxyErrorOverride Off|On [code ...] Off svdE
    Override error pages for proxied content
    ProxyExpressDBMFile pathnamesvE
    Pathname to DBM file.
    ProxyExpressDBMType type default svE
    DBM type of file.
    ProxyExpressEnable on|off off svE
    Enable the module functionality.
    ProxyFCGIBackendType FPM|GENERIC FPM svdhE
    Specify the type of backend FastCGI application
    ProxyFCGISetEnvIf conditional-expression [!]environment-variable-name - [value-expression]svdhE
    Allow variables sent to FastCGI servers to be fixed up
    ProxyFtpDirCharset character_set ISO-8859-1 svdE
    Define the character set for proxied FTP listings
    ProxyFtpEscapeWildcards on|off on svdE
    Whether wildcards in requested filenames are escaped when sent to the FTP server
    ProxyFtpListOnWildcard on|off on svdE
    Whether wildcards in requested filenames trigger a file listing
    ProxyHCExpr name {ap_expr expression}svE
    Creates a named condition expression to use to determine health of the backend based on its response
    ProxyHCTemplate name parameter=setting [...]svE
    Creates a named template for setting various health check parameters
    ProxyHCTPsize size 16 sE
    Sets the total server-wide size of the threadpool used for the health check workers
    ProxyHTMLBufSize bytes 8192 svdB
    Sets the buffer size increment for buffering inline scripts and + [value-expression]svdhE
    Allow variables sent to FastCGI servers to be fixed up
    ProxyFtpDirCharset character_set ISO-8859-1 svdE
    Define the character set for proxied FTP listings
    ProxyFtpEscapeWildcards on|off on svdE
    Whether wildcards in requested filenames are escaped when sent to the FTP server
    ProxyFtpListOnWildcard on|off on svdE
    Whether wildcards in requested filenames trigger a file listing
    ProxyHCExpr name {ap_expr expression}svE
    Creates a named condition expression to use to determine health of the backend based on its response
    ProxyHCTemplate name parameter=setting [...]svE
    Creates a named template for setting various health check parameters
    ProxyHCTPsize size 16 sE
    Sets the total server-wide size of the threadpool used for the health check workers
    ProxyHTMLBufSize bytes 8192 svdB
    Sets the buffer size increment for buffering inline scripts and stylesheets.
    ProxyHTMLCharsetOut Charset | * UTF-8 svdB
    Specify a charset for mod_proxy_html output.
    ProxyHTMLDocType HTML|XHTML [Legacy]
    OR +
    ProxyHTMLCharsetOut Charset | * UTF-8 svdB
    Specify a charset for mod_proxy_html output.
    ProxyHTMLDocType HTML|XHTML [Legacy]
    OR
    ProxyHTMLDocType fpi [SGML|XML]
    OR
    ProxyHTMLDocType html5
    OR -
    ProxyHTMLDocType auto
    auto (2.5/trunk ver +svdB
    Sets an HTML or XHTML document type declaration.
    ProxyHTMLEnable On|Off Off svdB
    Turns the proxy_html filter on or off.
    ProxyHTMLEvents attribute [attribute ...]svdB
    Specify attributes to treat as scripting events.
    ProxyHTMLExtended On|Off Off svdB
    Determines whether to fix links in inline scripts, stylesheets, +
    ProxyHTMLDocType auto
    auto (2.5/trunk ver +svdB
    Sets an HTML or XHTML document type declaration.
    ProxyHTMLEnable On|Off Off svdB
    Turns the proxy_html filter on or off.
    ProxyHTMLEvents attribute [attribute ...]svdB
    Specify attributes to treat as scripting events.
    ProxyHTMLExtended On|Off Off svdB
    Determines whether to fix links in inline scripts, stylesheets, and scripting events.
    ProxyHTMLFixups [lowercase] [dospath] [reset] none svdB
    Fixes for simple HTML errors.
    ProxyHTMLInterp On|Off Off svdB
    Enables per-request interpolation of +
    ProxyHTMLFixups [lowercase] [dospath] [reset] none svdB
    Fixes for simple HTML errors.
    ProxyHTMLInterp On|Off Off svdB
    Enables per-request interpolation of ProxyHTMLURLMap rules.
    ProxyHTMLLinks element attribute [attribute2 ...]svdB
    Specify HTML elements that have URL attributes to be rewritten.
    ProxyHTMLMeta On|Off Off svdB
    Turns on or off extra pre-parsing of metadata in HTML +
    ProxyHTMLLinks element attribute [attribute2 ...]svdB
    Specify HTML elements that have URL attributes to be rewritten.
    ProxyHTMLMeta On|Off Off svdB
    Turns on or off extra pre-parsing of metadata in HTML <head> sections.
    ProxyHTMLStripComments On|Off Off svdB
    Determines whether to strip HTML comments.
    ProxyHTMLURLMap from-pattern to-pattern [flags] [cond]svdB
    Defines a rule to rewrite HTML links
    ProxyIOBufferSize bytes 8192 svE
    Determine size of internal data throughput buffer
    <ProxyMatch regex> ...</ProxyMatch>svE
    Container for directives applied to regular-expression-matched +
    ProxyHTMLStripComments On|Off Off svdB
    Determines whether to strip HTML comments.
    ProxyHTMLURLMap from-pattern to-pattern [flags] [cond]svdB
    Defines a rule to rewrite HTML links
    ProxyIOBufferSize bytes 8192 svE
    Determine size of internal data throughput buffer
    <ProxyMatch regex> ...</ProxyMatch>svE
    Container for directives applied to regular-expression-matched proxied resources
    ProxyMaxForwards number -1 svE
    Maximum number of proxies that a request can be forwarded +
    ProxyMaxForwards number -1 svE
    Maximum number of proxies that a request can be forwarded through
    ProxyPass [path] !|url [key=value - [key=value ...]] [nocanon] [interpolate] [noquery]svdE
    Maps remote servers into the local server URL-space
    ProxyPassInherit On|Off On svE
    Inherit ProxyPass directives defined from the main server
    ProxyPassInterpolateEnv On|Off Off svdE
    Enable Environment Variable interpolation in Reverse Proxy configurations
    ProxyPassMatch [regex] !|url [key=value - [key=value ...]]svdE
    Maps remote servers into the local server URL-space using regular expressions
    ProxyPassReverse [path] url -[interpolate]svdE
    Adjusts the URL in HTTP response headers sent from a reverse +
    ProxyPass [path] !|url [key=value + [key=value ...]] [nocanon] [interpolate] [noquery]svdE
    Maps remote servers into the local server URL-space
    ProxyPassInherit On|Off On svE
    Inherit ProxyPass directives defined from the main server
    ProxyPassInterpolateEnv On|Off Off svdE
    Enable Environment Variable interpolation in Reverse Proxy configurations
    ProxyPassMatch [regex] !|url [key=value + [key=value ...]]svdE
    Maps remote servers into the local server URL-space using regular expressions
    ProxyPassReverse [path] url +[interpolate]svdE
    Adjusts the URL in HTTP response headers sent from a reverse proxied server
    ProxyPassReverseCookieDomain internal-domain -public-domain [interpolate]svdE
    Adjusts the Domain string in Set-Cookie headers from a reverse- +
    ProxyPassReverseCookieDomain internal-domain +public-domain [interpolate]svdE
    Adjusts the Domain string in Set-Cookie headers from a reverse- proxied server
    ProxyPassReverseCookiePath internal-path -public-path [interpolate]svdE
    Adjusts the Path string in Set-Cookie headers from a reverse- +
    ProxyPassReverseCookiePath internal-path +public-path [interpolate]svdE
    Adjusts the Path string in Set-Cookie headers from a reverse- proxied server
    ProxyPreserveHost On|Off Off svdE
    Use incoming Host HTTP request header for proxy +
    ProxyPreserveHost On|Off Off svdE
    Use incoming Host HTTP request header for proxy request
    ProxyReceiveBufferSize bytes 0 svE
    Network buffer size for proxied HTTP and FTP +
    ProxyReceiveBufferSize bytes 0 svE
    Network buffer size for proxied HTTP and FTP connections
    ProxyRemote match remote-server [username:password]svE
    Remote proxy used to handle certain requests
    ProxyRemoteMatch regex remote-server [username:password]svE
    Remote proxy used to handle requests matched by regular +
    ProxyRemote match remote-server [username:password]svE
    Remote proxy used to handle certain requests
    ProxyRemoteMatch regex remote-server [username:password]svE
    Remote proxy used to handle requests matched by regular expressions
    ProxyRequests On|Off Off svE
    Enables forward (standard) proxy requests
    ProxySCGIInternalRedirect On|Off|Headername On svdE
    Enable or disable internal redirect responses from the +
    ProxyRequests On|Off Off svE
    Enables forward (standard) proxy requests
    ProxySCGIInternalRedirect On|Off|Headername On svdE
    Enable or disable internal redirect responses from the backend
    ProxySCGISendfile On|Off|Headername Off svdE
    Enable evaluation of X-Sendfile pseudo response +
    ProxySCGISendfile On|Off|Headername Off svdE
    Enable evaluation of X-Sendfile pseudo response header
    ProxySet url key=value [key=value ...]svdE
    Set various Proxy balancer or member parameters
    ProxySourceAddress addresssvE
    Set local IP address for outgoing proxy connections
    ProxyStatus Off|On|Full Off svE
    Show Proxy LoadBalancer status in mod_status
    ProxyTimeout time-interval[s]svE
    Network timeout for proxied requests
    ProxyVia On|Off|Full|Block Off svE
    Information provided in the Via HTTP response +
    ProxySet url key=value [key=value ...]svdE
    Set various Proxy balancer or member parameters
    ProxySourceAddress addresssvE
    Set local IP address for outgoing proxy connections
    ProxyStatus Off|On|Full Off svE
    Show Proxy LoadBalancer status in mod_status
    ProxyTimeout time-interval[s]svE
    Network timeout for proxied requests
    ProxyVia On|Off|Full|Block Off svE
    Information provided in the Via HTTP response header for proxied requests
    ProxyWebsocketAsync ON|OFFsvE
    Instructs this module to try to create an asynchronous tunnel
    ProxyWebsocketAsyncDelay num[ms] 0 svE
    Sets the amount of time the tunnel waits synchronously for data
    ProxyWebsocketFallbackToProxyHttp On|Off On svE
    Instructs this module to let mod_proxy_http handle the request
    ProxyWebsocketIdleTimeout num[ms] 0 svE
    Sets the maximum amount of time to wait for data on the websockets tunnel
    QualifyRedirectURL On|Off Off svdC
    Controls whether the REDIRECT_URL environment variable is +
    ProxyWebsocketAsync ON|OFFsvD
    Instructs this module to try to create an asynchronous tunnel
    ProxyWebsocketAsyncDelay num[ms] 0 svD
    Sets the amount of time the tunnel waits synchronously for data
    ProxyWebsocketFallbackToProxyHttp On|Off On svD
    Instructs this module to let mod_proxy_http handle the request
    ProxyWebsocketIdleTimeout num[ms] 0 svD
    Sets the maximum amount of time to wait for data on the websockets tunnel
    QualifyRedirectURL On|Off Off svdC
    Controls whether the REDIRECT_URL environment variable is fully qualified
    ReadBufferSize bytes 8192 svdC
    Size of the buffers used to read data
    ReadmeName filenamesvdhB
    Name of the file that will be inserted at the end +
    ReadBufferSize bytes 8192 svdC
    Size of the buffers used to read data
    ReadmeName filenamesvdhB
    Name of the file that will be inserted at the end of the index listing
    ReceiveBufferSize bytes 0 sM
    TCP receive buffer size
    Redirect [status] [URL-path] -URLsvdhB
    Envía una redirección externa indicando al cliente que solicite una URL distinta
    RedirectMatch [status] regex -URLsvdhB
    Envía una redirección externa basada en una coincidencia de expresión regular con la URL actual +
    ReceiveBufferSize bytes 0 sM
    TCP receive buffer size
    Redirect [status] [URL-path] +URLsvdhB
    Envía una redirección externa indicando al cliente que solicite una URL distinta
    RedirectMatch [status] regex +URLsvdhB
    Envía una redirección externa basada en una coincidencia de expresión regular con la URL actual
    RedirectPermanent URL-path URLsvdhB
    Envía una redirección externa permanente indicando al cliente que solicite una URL diferente
    RedirectRelative On|Off Off svdB
    Allows relative redirect targets.
    RedirectTemp URL-path URLsvdhB
    Envía una redirección externa temporal indicando al cliente que solicite una URL diferente
    RedisConnPoolTTL num[units] 15s svE
    TTL used for the connection pool with the Redis server(s)
    RedisTimeout num[units] 5s svE
    R/W timeout used for the connection with the Redis server(s)
    ReflectorHeader inputheader [outputheader]svdhB
    Reflect an input header to the output headers
    RegexDefaultOptions [none] [+|-]option [[+|-]option] ... DOTALL DOLLAR_ENDON +sC
    Allow to configure global/default options for regexes
    RegisterHttpMethod method [method [...]]sC
    Register non-standard HTTP methods
    RemoteIPHeader header-fieldsvB
    Declare the header field which should be parsed for useragent IP addresses
    RemoteIPInternalProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPInternalProxyList filenamesvB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPProxiesHeader HeaderFieldNamesvB
    Declare the header field which will record all intermediate IP addresses
    RemoteIPProxyProtocol On|OffsvB
    Enable or disable PROXY protocol handling
    RemoteIPProxyProtocolExceptions host|range [host|range] [host|range]svB
    Disable processing of PROXY header for certain hosts or networks
    RemoteIPTrustedProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoteIPTrustedProxyList filenamesvB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoveCharset extension [extension] -...vdhB
    Removes any character set associations for a set of file +
    RedirectPermanent URL-path URLsvdhB
    Envía una redirección externa permanente indicando al cliente que solicite una URL diferente
    RedirectRelative On|Off Off svdB
    Allows relative redirect targets.
    RedirectTemp URL-path URLsvdhB
    Envía una redirección externa temporal indicando al cliente que solicite una URL diferente
    RedisConnPoolTTL num[units] 15s svE
    TTL used for the connection pool with the Redis server(s)
    RedisTimeout num[units] 5s svE
    R/W timeout used for the connection with the Redis server(s)
    ReflectorHeader inputheader [outputheader]svdhB
    Reflect an input header to the output headers
    RegexDefaultOptions [none] [+|-]option [[+|-]option] ... DOTALL DOLLAR_ENDON +sC
    Allow to configure global/default options for regexes
    RegisterHttpMethod method [method [...]]sC
    Register non-standard HTTP methods
    RemoteIPHeader header-fieldsvB
    Declare the header field which should be parsed for useragent IP addresses
    RemoteIPInternalProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPInternalProxyList filenamesvB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPProxiesHeader HeaderFieldNamesvB
    Declare the header field which will record all intermediate IP addresses
    RemoteIPProxyProtocol On|OffsvB
    Enable or disable PROXY protocol handling
    RemoteIPProxyProtocolExceptions host|range [host|range] [host|range]svB
    Disable processing of PROXY header for certain hosts or networks
    RemoteIPTrustedProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoteIPTrustedProxyList filenamesvB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoveCharset extension [extension] +...vdhB
    Removes any character set associations for a set of file extensions
    RemoveEncoding extension [extension] -...vdhB
    Removes any content encoding associations for a set of file +
    RemoveEncoding extension [extension] +...vdhB
    Removes any content encoding associations for a set of file extensions
    RemoveHandler extension [extension] -...vdhB
    Removes any handler associations for a set of file +
    RemoveHandler extension [extension] +...vdhB
    Removes any handler associations for a set of file extensions
    RemoveInputFilter extension [extension] -...vdhB
    Removes any input filter associations for a set of file +
    RemoveInputFilter extension [extension] +...vdhB
    Removes any input filter associations for a set of file extensions
    RemoveLanguage extension [extension] -...vdhB
    Removes any language associations for a set of file +
    RemoveLanguage extension [extension] +...vdhB
    Removes any language associations for a set of file extensions
    RemoveOutputFilter extension [extension] -...vdhB
    Removes any output filter associations for a set of file +
    RemoveOutputFilter extension [extension] +...vdhB
    Removes any output filter associations for a set of file extensions
    RemoveType extension [extension] -...vdhB
    Removes any content type associations for a set of file +
    RemoveType extension [extension] +...vdhB
    Removes any content type associations for a set of file extensions
    RequestHeader add|append|edit|edit*|merge|set|setifempty|unset +
    RequestHeader add|append|edit|edit*|merge|set|setifempty|unset header [[expr=]value [replacement] [early|env=[!]varname|expr=expression]] -svdhE
    Configure HTTP request headers
    RequestReadTimeout +svdhE
    Configure HTTP request headers
    RequestReadTimeout [handshake=timeout[-maxtimeout][,MinRate=rate] [header=timeout[-maxtimeout][,MinRate=rate] [body=timeout[-maxtimeout][,MinRate=rate] - handshake=0 header= +svE
    Set timeout values for completing the TLS handshake, receiving + handshake=0 header= +svE
    Set timeout values for completing the TLS handshake, receiving the request headers and/or body from client.
    Require [not] entity-name - [entity-name] ...dhB
    Tests whether an authenticated user is authorized by +
    Require [not] entity-name + [entity-name] ...dhB
    Tests whether an authenticated user is authorized by an authorization provider.
    <RequireAll> ... </RequireAll>dhB
    Enclose a group of authorization directives of which none +
    <RequireAll> ... </RequireAll>dhB
    Enclose a group of authorization directives of which none must fail and at least one must succeed for the enclosing directive to succeed.
    <RequireAny> ... </RequireAny>dhB
    Enclose a group of authorization directives of which one +
    <RequireAny> ... </RequireAny>dhB
    Enclose a group of authorization directives of which one must succeed for the enclosing directive to succeed.
    <RequireNone> ... </RequireNone>dhB
    Enclose a group of authorization directives of which none +
    <RequireNone> ... </RequireNone>dhB
    Enclose a group of authorization directives of which none must succeed for the enclosing directive to not fail.
    RewriteBase URL-pathdhE
    Sets the base URL for per-directory rewrites
    RewriteCond - TestString [!]CondPattern [flags]svdhE
    Defines a condition under which rewriting will take place +
    RewriteBase URL-pathdhE
    Sets the base URL for per-directory rewrites
    RewriteCond + TestString [!]CondPattern [flags]svdhE
    Defines a condition under which rewriting will take place
    RewriteEngine on|off off svdhE
    Enables or disables runtime rewriting engine
    RewriteMap MapName MapType:MapSource +
    RewriteEngine on|off off svdhE
    Enables or disables runtime rewriting engine
    RewriteMap MapName MapType:MapSource [MapTypeOptions] -svE
    Defines a mapping function for key-lookup
    RewriteOptions OptionssvdhE
    Sets some special options for the rewrite engine
    RewriteRule - [!]Pattern Substitution [flags]svdhE
    Defines rules for the rewriting engine
    RLimitCPU seconds|max [seconds|max]svdhC
    Limits the CPU consumption of processes launched +svE
    Defines a mapping function for key-lookup
    RewriteOptions OptionssvdhE
    Sets some special options for the rewrite engine
    RewriteRule + [!]Pattern Substitution [flags]svdhE
    Defines rules for the rewriting engine
    RLimitCPU seconds|max [seconds|max]svdhC
    Limits the CPU consumption of processes launched by Apache httpd children
    RLimitMEM bytes|max [bytes|max]svdhC
    Limits the memory consumption of processes launched +
    RLimitMEM bytes|max [bytes|max]svdhC
    Limits the memory consumption of processes launched by Apache httpd children
    RLimitNPROC number|max [number|max]svdhC
    Limits the number of processes that can be launched by +
    RLimitNPROC number|max [number|max]svdhC
    Limits the number of processes that can be launched by processes launched by Apache httpd children
    Satisfy Any|All All dhE
    Interacción entre control de acceso a nivel-de-hostess y autenticación de usuario
    ScoreBoardFile file-path apache_runtime_stat +sM
    Location of the file used to store coordination data for +
    Satisfy Any|All All dhE
    Interacción entre control de acceso a nivel-de-hostess y autenticación de usuario
    ScoreBoardFile file-path apache_runtime_stat +sM
    Location of the file used to store coordination data for the child processes
    Script method cgi-scriptsvdB
    Activa un script CGI para peticiones con un método concreto.
    ScriptAlias [URL-path] -file-path|directory-pathsvdB
    Mapea una URL a una ubicación del sistema de ficheros y designa el destino como un script CGI
    ScriptAliasMatch regex -file-path|directory-pathsvB
    Mapea una URL a una ubicación del sistema de ficheros usando +
    Script method cgi-scriptsvdB
    Activa un script CGI para peticiones con un método concreto.
    ScriptAlias [URL-path] +file-path|directory-pathsvdB
    Mapea una URL a una ubicación del sistema de ficheros y designa el destino como un script CGI
    ScriptAliasMatch regex +file-path|directory-pathsvB
    Mapea una URL a una ubicación del sistema de ficheros usando una expresión regular y designa el destino como un script CGI
    ScriptInterpreterSource Registry|Registry-Strict|Script Script svdhC
    Technique for locating the interpreter for CGI +
    ScriptInterpreterSource Registry|Registry-Strict|Script Script svdhC
    Technique for locating the interpreter for CGI scripts
    ScriptLog file-pathsvB
    Location of the CGI script error logfile
    ScriptLogBuffer bytes 1024 svB
    Maximum amount of PUT or POST requests that will be recorded +
    ScriptLog file-pathsvB
    Location of the CGI script error logfile
    ScriptLogBuffer bytes 1024 svB
    Maximum amount of PUT or POST requests that will be recorded in the scriptlog
    ScriptLogLength bytes 10385760 svB
    Size limit of the CGI script logfile
    ScriptSock file-path cgisock sB
    The filename prefix of the socket to use for communication with +
    ScriptLogLength bytes 10385760 svB
    Size limit of the CGI script logfile
    ScriptSock file-path cgisock sB
    The filename prefix of the socket to use for communication with the cgi daemon
    SecureListen [IP-address:]portnumber -Certificate-Name [MUTUAL]sB
    Enables SSL encryption for the specified port
    SeeRequestTail On|Off Off sC
    Determine if mod_status displays the first 63 characters +
    SecureListen [IP-address:]portnumber +Certificate-Name [MUTUAL]sB
    Enables SSL encryption for the specified port
    SeeRequestTail On|Off Off sC
    Determine if mod_status displays the first 63 characters of a request or the last 63, assuming the request itself is greater than 63 chars.
    SendBufferSize bytes 0 sM
    TCP buffer size
    ServerAdmin email-address|URLsvC
    Email address that the server includes in error +
    SendBufferSize bytes 0 sM
    TCP buffer size
    ServerAdmin email-address|URLsvC
    Email address that the server includes in error messages sent to the client
    ServerAlias hostname [hostname] ...vC
    Alternate names for a host used when matching requests +
    ServerAlias hostname [hostname] ...vC
    Alternate names for a host used when matching requests to name-virtual hosts
    ServerLimit numbersM
    Upper limit on configurable number of processes
    ServerName [scheme://]fully-qualified-domain-name[:port]svC
    Hostname and port that the server uses to identify +
    ServerLimit numbersM
    Upper limit on configurable number of processes
    ServerName [scheme://]fully-qualified-domain-name[:port]svC
    Hostname and port that the server uses to identify itself
    ServerPath URL-pathvC
    Legacy URL pathname for a name-based virtual host that +
    ServerPath URL-pathvC
    Legacy URL pathname for a name-based virtual host that is accessed by an incompatible browser
    ServerRoot directory-path /usr/local/apache sC
    Base directory for the server installation
    ServerSignature On|Off|EMail Off svdhC
    Configures the footer on server-generated documents
    ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full Full sC
    Configures the Server HTTP response +
    ServerRoot directory-path /usr/local/apache sC
    Base directory for the server installation
    ServerSignature On|Off|EMail Off svdhC
    Configures the footer on server-generated documents
    ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full Full sC
    Configures the Server HTTP response header
    Session On|Off Off svdhE
    Enables a session for the current directory or location
    SessionCookieMaxAge On|Off On svdhE
    Control whether session cookies have Max-Age transmitted to the client
    SessionCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session
    SessionCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session
    SessionCookieRemove On|Off Off svdhE
    Control for whether session cookies should be removed from incoming HTTP headers
    SessionCryptoCipher name aes256 svdhX
    The crypto cipher to be used to encrypt the session
    SessionCryptoDriver name [param[=value]]sX
    The crypto driver to be used to encrypt the session
    SessionCryptoPassphrase secret [ secret ... ] svdhX
    The key used to encrypt the session
    SessionCryptoPassphraseFile filenamesvdX
    File containing keys used to encrypt the session
    SessionDBDCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session ID
    SessionDBDCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session ID
    SessionDBDCookieRemove On|Off On svdhE
    Control for whether session ID cookies should be removed from incoming HTTP headers
    SessionDBDDeleteLabel label deletesession svdhE
    The SQL query to use to remove sessions from the database
    SessionDBDInsertLabel label insertsession svdhE
    The SQL query to use to insert sessions into the database
    SessionDBDPerUser On|Off Off svdhE
    Enable a per user session
    SessionDBDSelectLabel label selectsession svdhE
    The SQL query to use to select sessions from the database
    SessionDBDUpdateLabel label updatesession svdhE
    The SQL query to use to update existing sessions in the database
    SessionEnv On|Off Off svdhE
    Control whether the contents of the session are written to the +
    Session On|Off Off svdhE
    Enables a session for the current directory or location
    SessionCookieMaxAge On|Off On svdhE
    Control whether session cookies have Max-Age transmitted to the client
    SessionCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session
    SessionCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session
    SessionCookieRemove On|Off Off svdhE
    Control for whether session cookies should be removed from incoming HTTP headers
    SessionCryptoCipher name aes256 svdhX
    The crypto cipher to be used to encrypt the session
    SessionCryptoDriver name [param[=value]]sX
    The crypto driver to be used to encrypt the session
    SessionCryptoPassphrase secret [ secret ... ] svdhX
    The key used to encrypt the session
    SessionCryptoPassphraseFile filenamesvdX
    File containing keys used to encrypt the session
    SessionDBDCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session ID
    SessionDBDCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session ID
    SessionDBDCookieRemove On|Off On svdhE
    Control for whether session ID cookies should be removed from incoming HTTP headers
    SessionDBDDeleteLabel label deletesession svdhE
    The SQL query to use to remove sessions from the database
    SessionDBDInsertLabel label insertsession svdhE
    The SQL query to use to insert sessions into the database
    SessionDBDPerUser On|Off Off svdhE
    Enable a per user session
    SessionDBDSelectLabel label selectsession svdhE
    The SQL query to use to select sessions from the database
    SessionDBDUpdateLabel label updatesession svdhE
    The SQL query to use to update existing sessions in the database
    SessionEnv On|Off Off svdhE
    Control whether the contents of the session are written to the HTTP_SESSION environment variable
    SessionExclude pathsvdhE
    Define URL prefixes for which a session is ignored
    SessionExpiryUpdateInterval interval 0 (always update) svdhE
    Define the number of seconds a session's expiry may change without +
    SessionExclude pathsvdhE
    Define URL prefixes for which a session is ignored
    SessionExpiryUpdateInterval interval 0 (always update) svdhE
    Define the number of seconds a session's expiry may change without the session being updated
    SessionHeader headersvdhE
    Import session updates from a given HTTP response header
    SessionInclude pathsvdhE
    Define URL prefixes for which a session is valid
    SessionMaxAge maxage 0 svdhE
    Define a maximum age in seconds for a session
    SetEnv env-variable [value]svdhB
    Sets environment variables
    SetEnvIf attribute +
    SessionHeader headersvdhE
    Import session updates from a given HTTP response header
    SessionInclude pathsvdhE
    Define URL prefixes for which a session is valid
    SessionMaxAge maxage 0 svdhE
    Define a maximum age in seconds for a session
    SetEnv env-variable [value]svdhB
    Sets environment variables
    SetEnvIf attribute regex [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request + [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request
    SetEnvIfExpr expr +
    SetEnvIfExpr expr [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on an ap_expr expression
    SetEnvIfNoCase attribute regex + [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on an ap_expr expression
    SetEnvIfNoCase attribute regex [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request + [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request without respect to case
    SetHandler handler-name|NonesvdhC
    Forces all matching files to be processed by a +
    SetHandler handler-name|NonesvdhC
    Forces all matching files to be processed by a handler
    SetInputFilter filter[;filter...]svdhC
    Sets the filters that will process client requests and POST +
    SetInputFilter filter[;filter...]svdhC
    Sets the filters that will process client requests and POST input
    SetOutputFilter filter[;filter...]svdhC
    Sets the filters that will process responses from the +
    SetOutputFilter filter[;filter...]svdhC
    Sets the filters that will process responses from the server
    SSIEndTag tag "-->" svB
    String that ends an include element
    SSIErrorMsg message "[an error occurred +svdhB
    Error message displayed when there is an SSI +
    SSIEndTag tag "-->" svB
    String that ends an include element
    SSIErrorMsg message "[an error occurred +svdhB
    Error message displayed when there is an SSI error
    SSIETag on|off off dhB
    Controls whether ETags are generated by the server.
    SSILastModified on|off off dhB
    Controls whether Last-Modified headers are generated by the +
    SSIETag on|off off dhB
    Controls whether ETags are generated by the server.
    SSILastModified on|off off dhB
    Controls whether Last-Modified headers are generated by the server.
    SSILegacyExprParser on|off off dhB
    Enable compatibility mode for conditional expressions.
    SSIStartTag tag "<!--#" svB
    String that starts an include element
    SSITimeFormat formatstring "%A, %d-%b-%Y %H:%M +svdhB
    Configures the format in which date strings are +
    SSILegacyExprParser on|off off dhB
    Enable compatibility mode for conditional expressions.
    SSIStartTag tag "<!--#" svB
    String that starts an include element
    SSITimeFormat formatstring "%A, %d-%b-%Y %H:%M +svdhB
    Configures the format in which date strings are displayed
    SSIUndefinedEcho string "(none)" svdhB
    String displayed when an unset variable is echoed
    SSLCACertificateFile ruta-al-ficherosvE
    Fichero de Certificados CA concatenados y codificados en PEM para +
    SSIUndefinedEcho string "(none)" svdhB
    String displayed when an unset variable is echoed
    SSLCACertificateFile ruta-al-ficherosvE
    Fichero de Certificados CA concatenados y codificados en PEM para la Autenticación de Cliente
    SSLCACertificatePath ruta-de-directoriosvE
    Directorio de certificados CA codificados en PEM para la +
    SSLCACertificatePath ruta-de-directoriosvE
    Directorio de certificados CA codificados en PEM para la autenticación de Cliente
    SSLCACertificateURI urisvE
    Server CA certificate store for Client Authentication
    SSLCADNRequestFile ruta-al-ficherosvE
    Fichero de certificados CA concatenados codificados en PEM para definir nombres de CA aceptables
    SSLCADNRequestPath ruta-al-directoriosvE
    Directorio de Certificados CA codificados en PEM para definir nombres de CA aceptables
    SSLCARevocationCheck chain|leaf|none modificadores none svE
    Activar comprobación de revocación basada en CRL
    SSLCARevocationFile ruta-al-ficherosvE
    Fichero de CRL's de CA concatenados y codificados en PEM para la +
    SSLCADNRequestURI urisvE
    certificate store of CA Certificates for defining +acceptable CA names
    SSLCARevocationCheck chain|leaf|none modificadores none svE
    Activar comprobación de revocación basada en CRL
    SSLCARevocationFile ruta-al-ficherosvE
    Fichero de CRL's de CA concatenados y codificados en PEM para la Autenticación de ClienteFile of concatenated PEM-encoded CA CRLs for
    SSLCARevocationPath ruta-al-directoriosvE
    Directorio de CRLs de CA codificados en PEM para la Autenticación +
    SSLCARevocationPath ruta-al-directoriosvE
    Directorio de CRLs de CA codificados en PEM para la Autenticación de Cliente
    SSLCARevocationURI urisvE
    Server CA certificate revocation list store for Client Authentication
    SSLCertificateChainFile ruta-al-ficherosvE
    Fichero de Certificados CA de Servidor codificado en PEM
    SSLCertificateFile ruta-al-ficherosvE
    Fichero de datos Certificado X.509 codificado en PEM
    SSLCertificateKeyFile ruta-al-ficherosvE
    Fichero de clave privada de Servidor codificada en PEM
    SSLCipherSuite especificación-de-cifrado DEFAULT (depende de +svdhE
    Conjunto de Cifrados disponibles para negociación en el saludo SSL +
    SSLCertificateURI urisvE
    Server certificate and key store
    SSLCipherSuite especificación-de-cifrado DEFAULT (depende de +svdhE
    Conjunto de Cifrados disponibles para negociación en el saludo SSL
    SSLClientHelloVars on|off off svE
    Enable collection of ClientHello variables
    SSLCompression on|off off svE
    Activa la compresión a nivel de SSL
    SSLCryptoDevice engine builtin sE
    Activar el uso de un hardware acelerador criptográfico
    SSLECHKeyDir dirnamesE
    Load the set of Encrypted Client Hello (ECH) PEM files in the named directory
    SSLEngine on|off|optional|addr[:port] [addr[:port]] ... off svE
    Interruptor de Activación del motor SSL
    SSLFIPS on|off off sE
    Interruptor del modo SSL FIPS
    SSLHonorCipherOrder on|off off svE
    Opción para forzar el orden de preferencia de cifrados del +
    SSLClientHelloVars on|off off svE
    Enable collection of ClientHello variables
    SSLCompression on|off off svE
    Activa la compresión a nivel de SSL
    SSLCryptoDevice engine builtin sE
    Activar el uso de un hardware acelerador criptográfico
    SSLECHKeyDir dirnamesE
    Load the set of Encrypted Client Hello (ECH) PEM files in the named directory
    SSLEngine on|off|optional|addr[:port] [addr[:port]] ... off svE
    Interruptor de Activación del motor SSL
    SSLFIPS on|off off sE
    Interruptor del modo SSL FIPS
    SSLHonorCipherOrder on|off off svE
    Opción para forzar el orden de preferencia de cifrados del servidor
    SSLOCSDefaultResponder urisvE
    Configura la URI por defecto del respondedor para la validación +
    SSLOCSDefaultResponder urisvE
    Configura la URI por defecto del respondedor para la validación OCSP
    SSLOCSPEnable on|off off svE
    Activa la validación OCSP para la cadena de certificados del +
    SSLOCSPEnable on|off off svE
    Activa la validación OCSP para la cadena de certificados del cliente
    SSLOCSPNoverify On/Off Off svE
    Salta la verificación de certificados de respondedor +
    SSLOCSPNoverify On/Off Off svE
    Salta la verificación de certificados de respondedor OCSP
    SSLOCSPOverrideResponder on|off off svE
    Fuerza el uso de una URI de respondedor por defecto para la +
    SSLOCSPOverrideResponder on|off off svE
    Fuerza el uso de una URI de respondedor por defecto para la validación OCSP
    SSLOCSPProxyURL urlsvE
    URL de Proxy a utilizar para las consultas OCSP
    SSLOCSPResponderCertificateFile ficherosvE
    Conjunto de certificados de respondedor OCSP confiables codificados +
    SSLOCSPProxyURL urlsvE
    URL de Proxy a utilizar para las consultas OCSP
    SSLOCSPResponderCertificateFile ficherosvE
    Conjunto de certificados de respondedor OCSP confiables codificados en PEM
    SSLOCSPResponderTimeout segundos 10 svE
    Expiración de las consultas OCSP
    SSLOCSPResponseMaxAge segundos -1 svE
    Edad máxima permitida para las respuestas OCSP
    SSLOCSPResponseTimeSkew segundos 300 svE
    Desviación máxima de tiempo permitida para la validación de la +
    SSLOCSPResponderTimeout segundos 10 svE
    Expiración de las consultas OCSP
    SSLOCSPResponseMaxAge segundos -1 svE
    Edad máxima permitida para las respuestas OCSP
    SSLOCSPResponseTimeSkew segundos 300 svE
    Desviación máxima de tiempo permitida para la validación de la respuesta OCSP
    SSLOCSPUseRequestNonce on|off on svE
    Usar un nonce dentro de las consultas OCSP
    SSLOpenSSLConfCmd nombre-de-comando -parámetro-de-comandosvE
    Configura parámetros OpenSSL a través de su API SSL_CONF +
    SSLOCSPUseRequestNonce on|off on svE
    Usar un nonce dentro de las consultas OCSP
    SSLOpenSSLConfCmd nombre-de-comando +parámetro-de-comandosvE
    Configura parámetros OpenSSL a través de su API SSL_CONF
    SSLOptions [+|-]opción ...svdhE
    Configurar varias opciones del motor SSL en tiempo +
    SSLOptions [+|-]opción ...svdhE
    Configurar varias opciones del motor SSL en tiempo real
    SSLPassPhraseDialog tipo builtin sE
    Tipo de díalogo de solicitud de contraseña para claves privadas +
    SSLPassPhraseDialog tipo builtin sE
    Tipo de díalogo de solicitud de contraseña para claves privadas encriptadas
    SSLPolicy nombresvE
    Aplica una Política SSL por nombre
    SSLProtocol [+|-]protocol ... all -SSLv3 svE
    Configura versiones de protocolo SSL/TLS utilizables
    SSLProxyCACertificateFile ruta-al-ficherosvpE
    Fichero de Certificados CA concatenados codificados en PEM para +
    SSLPolicy nombresvE
    Aplica una Política SSL por nombre
    SSLProtocol [+|-]protocol ... all -SSLv3 svE
    Configura versiones de protocolo SSL/TLS utilizables
    SSLProxyCACertificateFile ruta-al-ficherosvpE
    Fichero de Certificados CA concatenados codificados en PEM para la Autenticación Remota del Servidor
    SSLProxyCACertificatePath ruta-al-directoriosvpE
    Directorio de Certificados CA codificados en PEM para la +
    SSLProxyCACertificatePath ruta-al-directoriosvpE
    Directorio de Certificados CA codificados en PEM para la Autenticación de Servidor Remoto
    SSLProxyCACertificateURI urisvpE
    Proxy CA certificate store for Remote Server Auth
    SSLProxyCARevocationCheck chain|leaf|none none svpE
    Activa la comprobación de revocación basada en CRL para la Autenticación Remota de Servidor
    SSLProxyCARevocationFile ruta-al-ficherosvpE
    Fichero de CRLs de CA codificados en PEM concatenados para la Autenticación Remota de Servidor
    SSLProxyCARevocationPath ruta-al-directoriosvpE
    Directorio de CRLs de CA codificadas en PEM para la Autenticación Remota de Servidor
    SSLProxyCheckPeerCN on|off on svpE
    Comprobar el campo CN del certificado del servidor remoto +
    SSLProxyCARevocationURI urisvpE
    Proxy CA certificate revocation list store for Remote Server Auth
    SSLProxyCheckPeerCN on|off on svpE
    Comprobar el campo CN del certificado del servidor remoto
    SSLProxyCheckPeerExpire on|off on svpE
    Comprobar si el certificado del servidor remoto está expirado +
    SSLProxyCheckPeerExpire on|off on svpE
    Comprobar si el certificado del servidor remoto está expirado
    SSLProxyCheckPeerName on|off on svpE
    Configure comprobación de nombre de host para certificados de +
    SSLProxyCheckPeerName on|off on svpE
    Configure comprobación de nombre de host para certificados de servidor remoto
    SSLProxyCipherSuite especificación-de-cifrado ALL:!ADH:RC4+RSA:+H +svpE
    Conjunto de Cifrados disponibles para negociación en el saludo SSL +
    SSLProxyCipherSuite especificación-de-cifrado ALL:!ADH:RC4+RSA:+H +svpE
    Conjunto de Cifrados disponibles para negociación en el saludo SSL de proxy
    SSLProxyEngine on|off off svpE
    Interruptor de Operación del Motor de Proxy SSL
    SSLProxyMachineCertificateChainFile ruta-al-ficherosvpE
    Fichero de certificados CA concatenados y codificados en PEM para +
    SSLProxyEngine on|off off svpE
    Interruptor de Operación del Motor de Proxy SSL
    SSLProxyMachineCertificateChainFile ruta-al-ficherosvpE
    Fichero de certificados CA concatenados y codificados en PEM para ser usados por el proxy para elegir un certificado
    SSLProxyMachineCertificateFile ruta-al-ficherosvpE
    Fichero de certificados cliente codificados en PEM y claves para +
    SSLProxyMachineCertificateFile ruta-al-ficherosvpE
    Fichero de certificados cliente codificados en PEM y claves para ser usadas por el proxy
    SSLProxyMachineCertificatePath directoriosvpE
    Directorio de certificados cliente codificados en PEM y claves +
    SSLProxyMachineCertificatePath directoriosvpE
    Directorio de certificados cliente codificados en PEM y claves para ser usadas por el proxy
    SSLProxyMachineCertificateURI urisvpE
    Proxy certificate and key stores
    SSLProxyProtocol [+|-]protocolo ... all -SSLv3 svpE
    Configure sabores de protocolo SSL utilizables para uso de proxy
    SSLProxyVerify level none svpE
    Tipo de verficación de certificado del servidor remoto
    UserDir directory-filename [directory-filename] ... svB
    Location of the user-specific directories
    VHostCGIMode On|Off|Secure On vX
    Determines whether the virtualhost can run +
    VHostCGIMode On|Off|Secure On vD
    Determines whether the virtualhost can run subprocesses, and the privileges available to subprocesses.
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...vX
    Assign arbitrary privileges to subprocesses created +
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...vD
    Assign arbitrary privileges to subprocesses created by a virtual host.
    VHostGroup unix-groupidvX
    Sets the Group ID under which a virtual host runs.
    VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...vX
    Assign arbitrary privileges to a virtual host.
    VHostSecure On|Off On vX
    Determines whether the server runs with enhanced security +
    VHostGroup unix-groupidvD
    Sets the Group ID under which a virtual host runs.
    VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...vD
    Assign arbitrary privileges to a virtual host.
    VHostSecure On|Off On vD
    Determines whether the server runs with enhanced security for the virtualhost.
    VHostUser unix-useridvX
    Sets the User ID under which a virtual host runs.
    VHostUser unix-useridvD
    Sets the User ID under which a virtual host runs.
    VirtualDocumentRoot interpolated-directory|none none svE
    Dynamically configure the location of the document root for a given virtual host
    VirtualDocumentRootIP interpolated-directory|none none svE
    Dynamically configure the location of the document root diff --git a/docs/manual/mod/quickreference.html.fr.utf8 b/docs/manual/mod/quickreference.html.fr.utf8 index c59d122d8b..be7cf899f7 100644 --- a/docs/manual/mod/quickreference.html.fr.utf8 +++ b/docs/manual/mod/quickreference.html.fr.utf8 @@ -1493,21 +1493,26 @@ d'une variable non définie
    SSLCACertificatePath chemin-répertoiresvE
    Répertoire des certificats de CA codés en PEM pour l'authentification des clients
    SSLCADNRequestFile file-pathsvE
    Fichier contenant la concaténation des certificats de CA +
    SSLCACertificateURI urisvE
    Server CA certificate store for Client Authentication
    SSLCADNRequestFile file-pathsvE
    Fichier contenant la concaténation des certificats de CA codés en PEM pour la définition de noms de CA acceptables
    SSLCADNRequestPath chemin-répertoiresvE
    Répertoire contenant des fichiers de certificats de CA +
    SSLCADNRequestPath chemin-répertoiresvE
    Répertoire contenant des fichiers de certificats de CA codés en PEM pour la définition de noms de CA acceptables
    SSLCADNRequestURI urisvE
    certificate store of CA Certificates for defining +acceptable CA names
    SSLCARevocationCheck chain|leaf|none [flags ...] none svE
    Active la vérification des révocations basée sur les CRL
    SSLCARevocationFile file-pathsvE
    Fichier contenant la concaténation des CRLs des CA codés en PEM pour l'authentification des clients
    SSLCARevocationPath chemin-répertoiresvE
    Répertoire des CRLs de CA codés en PEM pour l'authentification des clients
    SSLCertificateChainFile file-pathsvE
    Fichier contenant les certificats de CA du serveur codés en +
    SSLCARevocationURI urisvE
    Server CA certificate revocation list store for Client Authentication
    SSLCertificateChainFile file-pathsvE
    Fichier contenant les certificats de CA du serveur codés en PEM
    SSLCertificateFile file-path|certidsvE
    Fichier de données contenant les informations de certificat X.509 du serveur +
    SSLCertificateFile file-path|certidsvE
    Fichier de données contenant les informations de certificat X.509 du serveur codées au format PEM ou identificateur de jeton
    SSLCertificateKeyFile file-path|keyidsvE
    Fichier contenant la clé privée du serveur codée en +
    SSLCertificateKeyFile file-path|keyidsvE
    Fichier contenant la clé privée du serveur codée en PEM
    SSLCertificateURI urisvE
    Server certificate and key store
    SSLCipherSuite [protocol] cipher-spec DEFAULT (dépend de +svdhE
    Algorithmes de chiffrement disponibles pour la négociation au cours de l'initialisation de la connexion SSL
    SSLClientHelloVars on|off off svE
    Activer la collecte des variables de ClientHello
    SSLProxyCACertificatePath chemin-répertoiresvE
    Répertoire des certificats de CA codés en PEM pour l'authentification des serveurs distants
    SSLProxyCARevocationCheck chain|leaf|none none svE
    Active la vérification des révocations basée sur les CRLs +
    SSLProxyCACertificateURI urisvE
    Proxy CA certificate store for Remote Server Auth
    SSLProxyCARevocationCheck chain|leaf|none none svE
    Active la vérification des révocations basée sur les CRLs pour l'authentification du serveur distant
    SSLProxyCARevocationFile file-pathsvE
    Fichier contenant la concaténation des CRLs de CA codés en +
    SSLProxyCARevocationFile file-pathsvE
    Fichier contenant la concaténation des CRLs de CA codés en PEM pour l'authentification des serveurs distants
    SSLProxyCARevocationPath chemin-répertoiresvE
    Répertoire des CRLs de CA codés en PEM pour +
    SSLProxyCARevocationPath chemin-répertoiresvE
    Répertoire des CRLs de CA codés en PEM pour l'authentification des serveurs distants
    SSLProxyCARevocationURI urisvE
    Proxy CA certificate revocation list store for Remote Server Auth
    SSLProxyCheckPeerCN on|off on svE
    Configuration de la vérification du champ CN du certificat du serveur distant
    SSLProxyMachineCertificatePath chemin-répertoiresvE
    Répertoire des clés et certificats clients codés en PEM que le mandataire doit utiliser
    SSLProxyProtocol [+|-]protocole ... all -SSLv3 svE
    Définit les protocoles SSL disponibles pour la fonction de +
    SSLProxyMachineCertificateURI urisvE
    Proxy certificate and key stores
    SSLProxyProtocol [+|-]protocole ... all -SSLv3 svE
    Définit les protocoles SSL disponibles pour la fonction de mandataire
    SSLProxyVerify niveau none svE
    Niveau de vérification du certificat du serveur +
    SSLProxyVerify niveau none svE
    Niveau de vérification du certificat du serveur distant
    SSLProxyVerifyDepth niveau 1 svE
    Niveau de profondeur maximum dans les certificats de CA +
    SSLProxyVerifyDepth niveau 1 svE
    Niveau de profondeur maximum dans les certificats de CA lors de la vérification du certificat du serveur distant
    SSLRandomSeed contexte source -[nombre]sE
    Source de déclenchement du Générateur de Nombres +
    SSLRandomSeed contexte source +[nombre]sE
    Source de déclenchement du Générateur de Nombres Pseudo-Aléatoires (PRNG)
    SSLRenegBufferSize taille 131072 dhE
    Définit la taille du tampon de renégociation +
    SSLRenegBufferSize taille 131072 dhE
    Définit la taille du tampon de renégociation SSL
    SSLRequire expressiondhE
    N'autorise l'accès que lorsqu'une expression booléenne +
    SSLRequire expressiondhE
    N'autorise l'accès que lorsqu'une expression booléenne complexe et arbitraire est vraie
    SSLRequireSSLdhE
    Interdit l'accès lorsque la requête HTTP n'utilise pas +
    SSLRequireSSLdhE
    Interdit l'accès lorsque la requête HTTP n'utilise pas SSL
    SSLSessionCache type none sE
    Type du cache de session SSL global et +
    SSLSessionCache type none sE
    Type du cache de session SSL global et inter-processus
    SSLSessionCacheTimeout secondes 300 svE
    Nombre de secondes avant l'expiration d'une session SSL +
    SSLSessionCacheTimeout secondes 300 svE
    Nombre de secondes avant l'expiration d'une session SSL dans le cache de sessions
    SSLSessionTicketKeyFile file-pathsvE
    Clé de chiffrement/déchiffrement permanente pour les +
    SSLSessionTicketKeyFile file-pathsvE
    Clé de chiffrement/déchiffrement permanente pour les tickets de session TLS
    SSLSessionTickets on|off on svE
    Active ou désactive les tickets de session TLS
    SSLSRPUnknownUserSeed secret-stringsvE
    Source de randomisation pour utilisateur SRP inconnu
    SSLSRPVerifierFile file-pathsvE
    Chemin du fichier de vérification SRP
    SSLStaplingCache typesE
    Configuration du cache pour l'agrafage OCSP
    SSLStaplingErrorCacheTimeout secondes 600 svE
    Durée de vie des réponses invalides dans le cache pour +
    SSLSessionTickets on|off on svE
    Active ou désactive les tickets de session TLS
    SSLSRPUnknownUserSeed secret-stringsvE
    Source de randomisation pour utilisateur SRP inconnu
    SSLSRPVerifierFile file-pathsvE
    Chemin du fichier de vérification SRP
    SSLStaplingCache typesE
    Configuration du cache pour l'agrafage OCSP
    SSLStaplingErrorCacheTimeout secondes 600 svE
    Durée de vie des réponses invalides dans le cache pour agrafage OCSP
    SSLStaplingFakeTryLater on|off on svE
    Génère une réponse "tryLater" pour les requêtes OCSP échouées
    SSLStaplingForceURL urisvE
    Remplace l'URI du serveur OCSP spécifié dans l'extension +
    SSLStaplingFakeTryLater on|off on svE
    Génère une réponse "tryLater" pour les requêtes OCSP échouées
    SSLStaplingForceURL urisvE
    Remplace l'URI du serveur OCSP spécifié dans l'extension AIA du certificat
    SSLStaplingResponderTimeout secondes 10 svE
    Temps d'attente maximum pour les requêtes vers les serveurs +
    SSLStaplingResponderTimeout secondes 10 svE
    Temps d'attente maximum pour les requêtes vers les serveurs OCSP
    SSLStaplingResponseMaxAge secondes -1 svE
    Age maximum autorisé des réponses OCSP incluses dans la +
    SSLStaplingResponseMaxAge secondes -1 svE
    Age maximum autorisé des réponses OCSP incluses dans la négociation TLS
    SSLStaplingResponseTimeSkew secondes 300 svE
    Durée de vie maximale autorisée des réponses OCSP incluses dans la +
    SSLStaplingResponseTimeSkew secondes 300 svE
    Durée de vie maximale autorisée des réponses OCSP incluses dans la négociation TLS
    SSLStaplingReturnResponderErrors on|off on svE
    Transmet au client les erreurs survenues lors des requêtes +
    SSLStaplingReturnResponderErrors on|off on svE
    Transmet au client les erreurs survenues lors des requêtes OCSP
    SSLStaplingStandardCacheTimeout secondes 3600 svE
    Durée de vie des réponses OCSP dans le cache
    SSLStrictSNIVHostCheck on|off off svE
    Contrôle de l'accès des clients non-SNI à un serveur virtuel à +
    SSLStaplingStandardCacheTimeout secondes 3600 svE
    Durée de vie des réponses OCSP dans le cache
    SSLStrictSNIVHostCheck on|off off svE
    Contrôle de l'accès des clients non-SNI à un serveur virtuel à base de nom.
    SSLUserName nom-varsdhE
    Nom de la variable servant à déterminer le nom de +
    SSLUserName nom-varsdhE
    Nom de la variable servant à déterminer le nom de l'utilisateur
    SSLUseStapling on|off off svE
    Active l'ajout des réponses OCSP à la négociation TLS
    SSLVerifyClient niveau none svdhE
    Niveau de vérification du certificat client
    SSLVerifyDepth nombre 1 svdhE
    Profondeur maximale des certificats de CA pour la +
    SSLUseStapling on|off off svE
    Active l'ajout des réponses OCSP à la négociation TLS
    SSLVerifyClient niveau none svdhE
    Niveau de vérification du certificat client
    SSLVerifyDepth nombre 1 svdhE
    Profondeur maximale des certificats de CA pour la vérification des certificats clients
    SSLVHostSNIPolicy strict|secure|authonly|insecure secure sE
    Définir la politique de compatibilité pour l'accès des clients SNI +
    SSLVHostSNIPolicy strict|secure|authonly|insecure secure sE
    Définir la politique de compatibilité pour l'accès des clients SNI aux serveurs virtuels.
    StartServers nombresM
    Nombre de processus enfants du serveur créés au +
    StartServers nombresM
    Nombre de processus enfants du serveur créés au démarrage
    StartThreads nombresM
    Nombre de threads créés au démarrage
    StrictHostCheck ON|OFF OFF svC
    Détermine si le nom d'hôte contenu dans une requête doit être +
    StartThreads nombresM
    Nombre de threads créés au démarrage
    StrictHostCheck ON|OFF OFF svC
    Détermine si le nom d'hôte contenu dans une requête doit être explicitement spécifié au niveau du serveur virtuel qui a pris en compte cette dernière.
    Substitute s/modèle/substitution/[infq]dhE
    Modèle de substition dans le contenu de la +
    Substitute s/modèle/substitution/[infq]dhE
    Modèle de substition dans le contenu de la réponse
    SubstituteInheritBefore on|off on dhE
    Modifie l'ordre de fusion des modèles hérités
    SubstituteMaxLineLength octets(b|B|k|K|m|M|g|G) 1m dhE
    Définit la longueur de ligne maximale
    Suexec On|OffsB
    Active ou désactive la fonctionnalité suEXEC
    SuexecUserGroup Utilisateur GroupesvE
    L'utilisateur et le groupe sous lesquels les programmes CGI +
    SubstituteInheritBefore on|off on dhE
    Modifie l'ordre de fusion des modèles hérités
    SubstituteMaxLineLength octets(b|B|k|K|m|M|g|G) 1m dhE
    Définit la longueur de ligne maximale
    Suexec On|OffsB
    Active ou désactive la fonctionnalité suEXEC
    SuexecUserGroup Utilisateur GroupesvE
    L'utilisateur et le groupe sous lesquels les programmes CGI doivent s'exécuter
    ThreadLimit nombresM
    Le nombre de threads maximum que l'on peut définir par +
    ThreadLimit nombresM
    Le nombre de threads maximum que l'on peut définir par processus enfant
    ThreadsPerChild nombresM
    Nombre de threads créés par chaque processus +
    ThreadsPerChild nombresM
    Nombre de threads créés par chaque processus enfant
    ThreadStackSize taillesM
    La taille en octets de la pile qu'utilisent les threads qui +
    ThreadStackSize taillesM
    La taille en octets de la pile qu'utilisent les threads qui traitent les connexions clients
    TimeOut time-interval[s] 60 svC
    Temps pendant lequel le serveur va attendre certains +
    TimeOut time-interval[s] 60 svC
    Temps pendant lequel le serveur va attendre certains évènements avant de considérer qu'une requête a échoué
    TraceEnable [on|off|extended] on svC
    Détermine le comportement des requêtes +
    TraceEnable [on|off|extended] on svC
    Détermine le comportement des requêtes TRACE
    TransferLog fichier|pipesvB
    Spécifie l'emplacement d'un fichier journal
    TypesConfig chemin-fichier conf/mime.types sB
    Le chemin du fichier mime.types
    UNCList hostname [hostname...]sC
    Définit quels sont les noms d'hôte UNC auxquels le serveur peut accéder +
    TransferLog fichier|pipesvB
    Spécifie l'emplacement d'un fichier journal
    TypesConfig chemin-fichier conf/mime.types sB
    Le chemin du fichier mime.types
    UNCList hostname [hostname...]sC
    Définit quels sont les noms d'hôte UNC auxquels le serveur peut accéder
    UnDefine nom-variablesvC
    Invalide la définition d'une variable
    UndefMacro nomsvdB
    Supprime une macro
    UnsetEnv var-env [var-env] -...svdhB
    Supprime des variables de l'environnement
    Use nom [valeur1 ... valeurN] -svdB
    Utilisation d'une macro
    UseCanonicalName On|Off|DNS Off svdC
    Définit la manière dont le serveur détermine son propre nom +
    UnDefine nom-variablesvC
    Invalide la définition d'une variable
    UndefMacro nomsvdB
    Supprime une macro
    UnsetEnv var-env [var-env] +...svdhB
    Supprime des variables de l'environnement
    Use nom [valeur1 ... valeurN] +svdB
    Utilisation d'une macro
    UseCanonicalName On|Off|DNS Off svdC
    Définit la manière dont le serveur détermine son propre nom et son port
    UseCanonicalPhysicalPort On|Off Off svdC
    Définit la manière dont le serveur +
    UseCanonicalPhysicalPort On|Off Off svdC
    Définit la manière dont le serveur détermine son propre port
    User utilisateur unix #-1 sB
    L'utilisateur sous lequel le serveur va traiter les +
    User utilisateur unix #-1 sB
    L'utilisateur sous lequel le serveur va traiter les requêtes
    UserDir nom-répertoire [nom-répertoire] ... -svB
    Chemin des répertoires propres à un +
    UserDir nom-répertoire [nom-répertoire] ... +svB
    Chemin des répertoires propres à un utilisateur
    VHostCGIMode On|Off|Secure On v
    Détermine si le serveur virtuel peut exécuter des +
    VHostCGIMode On|Off|Secure On v
    Détermine si le serveur virtuel peut exécuter des sous-processus, et définit les privilèges disponibles pour ces dernier.
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...v
    Assigne des privilèges au choix aux sous-processus créés +
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...v
    Assigne des privilèges au choix aux sous-processus créés par un serveur virtuel.
    VHostGroup identifiant-groupe-unixv
    Définit l'identifiant du groupe sous lequel s'exécute un +
    VHostGroup identifiant-groupe-unixv
    Définit l'identifiant du groupe sous lequel s'exécute un serveur virtuel.
    VHostPrivs [+-]?nom-privilège [[+-]?nom-privilège] ...v
    Assigne des privilèges à un serveur virtuel.
    VHostSecure On|Off On v
    Détermine si le serveur s'exécute avec une sécurité avancée +
    VHostPrivs [+-]?nom-privilège [[+-]?nom-privilège] ...v
    Assigne des privilèges à un serveur virtuel.
    VHostSecure On|Off On v
    Détermine si le serveur s'exécute avec une sécurité avancée pour les serveurs virtuels.
    VHostUser identifiant-utilisateur-unixv
    Définit l'identifiant utilisateur sous lequel s'exécute un +
    VHostUser identifiant-utilisateur-unixv
    Définit l'identifiant utilisateur sous lequel s'exécute un serveur virtuel.
    VirtualDocumentRoot répertoire-interpolé|none none svE
    Permet une configuration dynamique de la racine des +
    VirtualDocumentRoot répertoire-interpolé|none none svE
    Permet une configuration dynamique de la racine des documents d'un serveur virtuel donné
    VirtualDocumentRootIP répertoire-interpolé|none none svE
    Configuration dynamique de la racine des documents pour un +
    VirtualDocumentRootIP répertoire-interpolé|none none svE
    Configuration dynamique de la racine des documents pour un serveur virtuel donné
    <VirtualHost +
    <VirtualHost adresse IP[:port] [adresse IP[:port]] ...> ... - </VirtualHost>sC
    Contient des directives qui ne s'appliquent qu'à un nom + </VirtualHost>sC
    Contient des directives qui ne s'appliquent qu'à un nom d'hôte spécifique ou à une adresse IP
    VirtualScriptAlias répertoire-interpolé|none none svE
    Configuration dynamique du répertoire des scripts CGI pour +
    VirtualScriptAlias répertoire-interpolé|none none svE
    Configuration dynamique du répertoire des scripts CGI pour un serveur virtuel donné
    VirtualScriptAliasIP répertoire-interpolé|none none svE
    Configuration dynamique du répertoire des scripts CGI pour +
    VirtualScriptAliasIP répertoire-interpolé|none none svE
    Configuration dynamique du répertoire des scripts CGI pour un serveur virtuel donné
    Warning messagesvdhC
    Message d'avertissement personnalisable en provenance de +
    Warning messagesvdhC
    Message d'avertissement personnalisable en provenance de l'interprétation du fichier de configuration
    WatchdogInterval time-interval[s] 1 sB
    Intervalle Watchdog en secondes
    XBitHack on|off|full off svdhB
    Interprète les directives SSI dans les fichiers dont le bit +
    WatchdogInterval time-interval[s] 1 sB
    Intervalle Watchdog en secondes
    XBitHack on|off|full off svdhB
    Interprète les directives SSI dans les fichiers dont le bit d'exécution est positionné
    xml2EncAlias jeu-de-caractères alias [alias ...]sB
    Définit des alias pour les valeurs d'encodage
    xml2EncDefault nomsvdhB
    Définit un encodage par défaut à utiliser lorsqu'aucune +
    xml2EncAlias jeu-de-caractères alias [alias ...]sB
    Définit des alias pour les valeurs d'encodage
    xml2EncDefault nomsvdhB
    Définit un encodage par défaut à utiliser lorsqu'aucune information ne peut être automatiquement détectée
    xml2StartParse élément [élément ...]svdhB
    Indique à l'interpréteur à partir de quelle balise il doit +
    xml2StartParse élément [élément ...]svdhB
    Indique à l'interpréteur à partir de quelle balise il doit commencer son traitement.
    diff --git a/docs/manual/mod/quickreference.html.ja.utf8 b/docs/manual/mod/quickreference.html.ja.utf8 index d79ab01c50..2022a76691 100644 --- a/docs/manual/mod/quickreference.html.ja.utf8 +++ b/docs/manual/mod/quickreference.html.ja.utf8 @@ -376,20 +376,20 @@ CGI program
    CryptoIV value none svdhE
    IV (Initialization Vector) to be used by the crypto filter
    CryptoKey value none svdhE
    Key to be used by the crypto filter
    CryptoSize integer 131072 svdhE
    Maximum size in bytes to buffer by the crypto filter
    CTAuditStorage directorysE
    Existing directory where data for off-line audit will be stored
    CTLogClient executablesE
    Location of certificate-transparency log client tool
    CTLogConfigDB filenamesE
    Log configuration database supporting dynamic updates
    CTMaxSCTAge num-secondssE
    Maximum age of SCT obtained from a log, before it will be +
    CTAuditStorage directorysD
    Existing directory where data for off-line audit will be stored
    CTLogClient executablesD
    Location of certificate-transparency log client tool
    CTLogConfigDB filenamesD
    Log configuration database supporting dynamic updates
    CTMaxSCTAge num-secondssD
    Maximum age of SCT obtained from a log, before it will be refreshed
    CTProxyAwareness oblivious|aware|requiresvE
    Level of CT awareness and enforcement for a proxy +
    CTProxyAwareness oblivious|aware|requiresvD
    Level of CT awareness and enforcement for a proxy
    CTSCTStorage directorysE
    Existing directory where SCTs are managed
    CTServerHelloSCTLimit limitsE
    Limit on number of SCTs that can be returned in +
    CTSCTStorage directorysD
    Existing directory where SCTs are managed
    CTServerHelloSCTLimit limitsD
    Limit on number of SCTs that can be returned in ServerHello
    CTStaticLogConfig log-id|- public-key-file|- 1|0|- min-timestamp|- max-timestamp|- -log-URL|-sE
    Static configuration of information about a log
    CTStaticSCTs certificate-pem-file sct-directorysE
    Static configuration of one or more SCTs for a server certificate +log-URL|-sD
    Static configuration of information about a log
    CTStaticSCTs certificate-pem-file sct-directorysD
    Static configuration of one or more SCTs for a server certificate
    CustomLog file|pipe format|nickname @@ -454,7 +454,7 @@ X-OC-Mtime request header
    DirectorySlash On|Off On svdhB
    パス末尾のスラッシュでリダイレクトするかどうかのオンオフをトグルさせる
    DocumentRoot directory-path /usr/local/apache/h +svC
    ウェブから見えるメインのドキュメントツリーになる ディレクトリ
    DTracePrivileges On|Off Off sX
    Determines whether the privileges required by dtrace are enabled.
    DTracePrivileges On|Off Off sD
    Determines whether the privileges required by dtrace are enabled.
    DumpIOInput On|Off Off sE
    エラーログにすべての入力データをダンプ
    DumpIOOutput On|Off Off sE
    エラーログにすべての出力データをダンプ
    <Else> ... </Else>svdhC
    Contains directives that apply only if the condition of a @@ -585,10 +585,10 @@ if file exists at startup
    <IfVersion [[!]operator] version> ... </IfVersion>svdhE
    バージョン依存の設定を入れる
    ImapBase map|referer|URL http://servername/ svdhB
    Default base for imagemap files
    ImapDefault error|nocontent|map|referer|URL nocontent svdhB
    Default action when an imagemap is called with coordinates +
    ImapBase map|referer|URL http://servername/ svdhD
    Default base for imagemap files
    ImapDefault error|nocontent|map|referer|URL nocontent svdhD
    Default action when an imagemap is called with coordinates that are not explicitly mapped
    ImapMenu none|formatted|semiformatted|unformatted formatted svdhB
    Action if no coordinates are given when calling +
    ImapMenu none|formatted|semiformatted|unformatted formatted svdhD
    Action if no coordinates are given when calling an imagemap
    Include file-path|directory-pathsvdC
    サーバ設定ファイル中から他の設定ファイルを取り込む
    IncludeOptional file-path|directory-path|wildcardsvdC
    Includes other configuration files from within @@ -757,408 +757,417 @@ simultaneously
    MDDriveMode always|auto|manual auto sX
    former name of MDRenewMode.
    MDExternalAccountBinding key-id hmac-64 | none | file none sX
    Set the external account binding keyid and hmac values to use at CA
    MDHttpProxy urlsX
    Define a proxy for outgoing connections.
    MDInitialDelay duration 0s sX
    How long to delay the first certificate check.
    MDMatchNames all|servernames all sX
    Determines how DNS names are matched to vhosts
    MDMember hostnamesX
    Additional hostname for the managed domain.
    MDMembers auto|manual auto sX
    Control if the alias domain names are automatically added.
    MDMessageCmd path-to-cmd optional-argssX
    Handle events for Manage Domains
    MDMustStaple on|off off sX
    Control if new certificates carry the OCSP Must Staple flag.
    MDNotifyCmd path [ args ]sX
    Run a program when a Managed Domain is ready.
    MDomain dns-name [ other-dns-name... ] [auto|manual]sX
    Define list of domain names that belong to one group.
    <MDomainSet dns-name [ other-dns-name... ]>...</MDomainSet>sX
    Container for directives applied to the same managed domains.
    MDPortMap map1 [ map2 ] http:80 https:443 sX
    Map external to internal ports for domain ownership verification.
    MDPrivateKeys type [ params... ] RSA 2048 sX
    Set type and size of the private keys generated.
    MDProfile namesX
    Use a specific ACME profile from the CA
    MDProfileMandatory on|off off sX
    Control if an MDProfile is mandatory.
    MDRenewMode always|auto|manual auto sX
    Controls if certificates shall be renewed.
    MDRenewViaARI on|off on sX
    usage of the ACME ARI extension (rfc9773).
    MDRenewWindow duration 33% sX
    Control when a certificate will be renewed.
    MDRequireHttps off|temporary|permanent off sX
    Redirects http: traffic to https: for Managed Domains.
    MDRetryDelay duration 30s sX
    Time length for first retry, doubled on every consecutive error.
    MDRetryFailover number 13 sX
    The number of errors before a failover to another CA is triggered
    MDServerStatus on|off off sX
    Control if Managed Domain information is added to server-status.
    MDStapleOthers on|off on sX
    Enable stapling for certificates not managed by mod_md.
    MDStapling on|off off sX
    Enable stapling for all or a particular MDomain.
    MDStaplingKeepResponse duration 7d sX
    Controls when old responses should be removed.
    MDStaplingRenewWindow duration 33% sX
    Control when the stapling responses will be renewed.
    MDStoreDir path md sX
    Path on the local file system to store the Managed Domains data.
    MDStoreLocks on|off|duration off sX
    Configure locking of store for updates
    MDWarnWindow duration 10% sX
    Define the time window when you want to be warned about an expiring certificate.
    MemcacheConnTTL num[units] 15s svE
    Keepalive time for idle connections
    MergeSlashes ON|OFF ON svC
    Controls whether the server merges consecutive slashes in URLs. +
    MDHttpProxyCACertificateFile path-to-pem-file none sX
    Sets the root (CA) certificates to use for TLS connections to the http-proxy.
    MDInitialDelay duration 0s sX
    How long to delay the first certificate check.
    MDMatchNames all|servernames all sX
    Determines how DNS names are matched to vhosts
    MDMember hostnamesX
    Additional hostname for the managed domain.
    MDMembers auto|manual auto sX
    Control if the alias domain names are automatically added.
    MDMessageCmd path-to-cmd optional-argssX
    Handle events for Manage Domains
    MDMustStaple on|off off sX
    Control if new certificates carry the OCSP Must Staple flag.
    MDNotifyCmd path [ args ]sX
    Run a program when a Managed Domain is ready.
    MDomain dns-name [ other-dns-name... ] [auto|manual]sX
    Define list of domain names that belong to one group.
    <MDomainSet dns-name [ other-dns-name... ]>...</MDomainSet>sX
    Container for directives applied to the same managed domains.
    MDPortMap map1 [ map2 ] http:80 https:443 sX
    Map external to internal ports for domain ownership verification.
    MDPrivateKeys type [ params... ] RSA 2048 sX
    Set type and size of the private keys generated.
    MDProfile namesX
    Use a specific ACME profile from the CA
    MDProfileMandatory on|off off sX
    Control if an MDProfile is mandatory.
    MDRenewMode always|auto|manual auto sX
    Controls if certificates shall be renewed.
    MDRenewViaARI on|off on sX
    usage of the ACME ARI extension (rfc9773).
    MDRenewWindow duration 33% sX
    Control when a certificate will be renewed.
    MDRequireHttps off|temporary|permanent off sX
    Redirects http: traffic to https: for Managed Domains.
    MDRetryDelay duration 30s sX
    Time length for first retry, doubled on every consecutive error.
    MDRetryFailover number 13 sX
    The number of errors before a failover to another CA is triggered
    MDServerStatus on|off off sX
    Control if Managed Domain information is added to server-status.
    MDStapleOthers on|off on sX
    Enable stapling for certificates not managed by mod_md.
    MDStapling on|off off sX
    Enable stapling for all or a particular MDomain.
    MDStaplingKeepResponse duration 7d sX
    Controls when old responses should be removed.
    MDStaplingRenewWindow duration 33% sX
    Control when the stapling responses will be renewed.
    MDStoreDir path md sX
    Path on the local file system to store the Managed Domains data.
    MDStoreLocks on|off|duration off sX
    Configure locking of store for updates
    MDWarnWindow duration 10% sX
    Define the time window when you want to be warned about an expiring certificate.
    MemcacheConnTTL num[units] 15s svE
    Keepalive time for idle connections
    MergeSlashes ON|OFF ON svC
    Controls whether the server merges consecutive slashes in URLs.
    MergeTrailers [on|off] off svC
    Determines whether trailers are merged into headers
    MetaDir directory .web svdhE
    Name of the directory to find CERN-style meta information +
    MergeTrailers [on|off] off svC
    Determines whether trailers are merged into headers
    MetaDir directory .web svdhD
    Name of the directory to find CERN-style meta information files
    MetaFiles on|off off svdhE
    Activates CERN meta-file processing
    MetaSuffix suffix .meta svdhE
    File name suffix for the file containing CERN-style +
    MetaFiles on|off off svdhD
    Activates CERN meta-file processing
    MetaSuffix suffix .meta svdhD
    File name suffix for the file containing CERN-style meta information
    MimeMagicDecompression On|Off Off svE
    Enable decompression of compressed files for MIME type detection
    MimeMagicFile file-pathsvE
    Enable MIME-type determination based on file contents +
    MimeMagicDecompression On|Off Off svE
    Enable decompression of compressed files for MIME type detection
    MimeMagicFile file-pathsvE
    Enable MIME-type determination based on file contents using the specified magic file
    MimeOptions option [option] ...svdhB
    Configures mod_mime behavior
    MinSpareServers number 5 sM
    アイドルな子サーバプロセスの最小個数
    MinSpareThreads numbersM
    リクエストに応答することのできる +
    MimeOptions option [option] ...svdhB
    Configures mod_mime behavior
    MinSpareServers number 5 sM
    アイドルな子サーバプロセスの最小個数
    MinSpareThreads numbersM
    リクエストに応答することのできる アイドルスレッド数の最小数
    MMapFile file-path [file-path] ...sX
    Map a list of files into memory at startup time
    ModemStandard V.21|V.26bis|V.32|V.34|V.92dX
    Modem standard to simulate
    ModMimeUsePathInfo On|Off Off d
    path_info コンポーネントをファイル名の一部として扱うように +
    MMapFile file-path [file-path] ...sX
    Map a list of files into memory at startup time
    ModemStandard V.21|V.26bis|V.32|V.34|V.92dX
    Modem standard to simulate
    ModMimeUsePathInfo On|Off Off d
    path_info コンポーネントをファイル名の一部として扱うように mod_mime に通知する
    MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers -[Handlers|Filters] NegotiatedOnly svdh
    MultiViews でのマッチングの検索に含ませる +
    MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers +[Handlers|Filters] NegotiatedOnly svdh
    MultiViews でのマッチングの検索に含ませる ファイルのタイプを指定する
    Mutex mechanism [default|mutex-name] ... [OmitPID] default sC
    Configures mutex mechanism and lock file directory for all +
    Mutex mechanism [default|mutex-name] ... [OmitPID] default sC
    Configures mutex mechanism and lock file directory for all or specified mutexes
    NameVirtualHost addr[:port]sC
    名前ベースのバーチャルホストのための IP アドレスを指定
    NoProxy host [host] ...svE
    直接接続する ホスト、ドメイン、ネットワーク
    NWSSLTrustedCerts filename [filename] ...sB
    List of additional client certificates
    NWSSLUpgradeable [IP-address:]portnumbersB
    Allows a connection to be upgraded to an SSL connection upon request
    Options - [+|-]option [[+|-]option] ... All svdhC
    ディレクトリに対して使用可能な機能を設定する
    Order ordering Deny,Allow dhE
    デフォルトのアクセス可能な状態と、Allow と +
    NameVirtualHost addr[:port]sC
    名前ベースのバーチャルホストのための IP アドレスを指定
    NoProxy host [host] ...svE
    直接接続する ホスト、ドメイン、ネットワーク
    NWSSLTrustedCerts filename [filename] ...sB
    List of additional client certificates
    NWSSLUpgradeable [IP-address:]portnumbersB
    Allows a connection to be upgraded to an SSL connection upon request
    Options + [+|-]option [[+|-]option] ... All svdhC
    ディレクトリに対して使用可能な機能を設定する
    Order ordering Deny,Allow dhE
    デフォルトのアクセス可能な状態と、Allow と Deny が評価される順番を制御する
    OutputSed sed-commanddhX
    Sed command for filtering response content
    PassEnv env-variable [env-variable] -...svdhB
    シェルからの環境変数を渡す
    PidFile filename logs/httpd.pid sM
    デーモンのプロセス ID +
    OutputSed sed-commanddhX
    Sed command for filtering response content
    PassEnv env-variable [env-variable] +...svdhB
    シェルからの環境変数を渡す
    PidFile filename logs/httpd.pid sM
    デーモンのプロセス ID をサーバが記録するためのファイル
    PolicyConditional ignore|log|enforcesvdE
    Enable the conditional request policy.
    PolicyConditionalURL urlsvdE
    URL describing the conditional request policy.
    PolicyEnvironment variable log-value ignore-valuesvdE
    Override policies based on an environment variable.
    PolicyFilter on|offsvdE
    Enable or disable policies for the given URL space.
    PolicyKeepalive ignore|log|enforcesvdE
    Enable the keepalive policy.
    PolicyKeepaliveURL urlsvdE
    URL describing the keepalive policy.
    PolicyLength ignore|log|enforcesvdE
    Enable the content length policy.
    PolicyLengthURL urlsvdE
    URL describing the content length policy.
    PolicyMaxage ignore|log|enforce agesvdE
    Enable the caching minimum max-age policy.
    PolicyMaxageURL urlsvdE
    URL describing the caching minimum freshness lifetime policy.
    PolicyNocache ignore|log|enforcesvdE
    Enable the caching no-cache policy.
    PolicyNocacheURL urlsvdE
    URL describing the caching no-cache policy.
    PolicyType ignore|log|enforce type [ type [ ... ]]svdE
    Enable the content type policy.
    PolicyTypeURL urlsvdE
    URL describing the content type policy.
    PolicyValidation ignore|log|enforcesvdE
    Enable the validation policy.
    PolicyValidationURL urlsvdE
    URL describing the content type policy.
    PolicyVary ignore|log|enforce header [ header [ ... ]]svdE
    Enable the Vary policy.
    PolicyVaryURL urlsvdE
    URL describing the content type policy.
    PolicyVersion ignore|log|enforce HTTP/0.9|HTTP/1.0|HTTP/1.1svdE
    Enable the version policy.
    PolicyVersionURL urlsvdE
    URL describing the minimum request HTTP version policy.
    PollersPerChild number 0 sM
    Number of poll threads per child process
    PrivilegesMode FAST|SECURE|SELECTIVE FAST svdX
    Trade off processing speed and efficiency vs security against +
    PolicyConditional ignore|log|enforcesvdE
    Enable the conditional request policy.
    PolicyConditionalURL urlsvdE
    URL describing the conditional request policy.
    PolicyEnvironment variable log-value ignore-valuesvdE
    Override policies based on an environment variable.
    PolicyFilter on|offsvdE
    Enable or disable policies for the given URL space.
    PolicyKeepalive ignore|log|enforcesvdE
    Enable the keepalive policy.
    PolicyKeepaliveURL urlsvdE
    URL describing the keepalive policy.
    PolicyLength ignore|log|enforcesvdE
    Enable the content length policy.
    PolicyLengthURL urlsvdE
    URL describing the content length policy.
    PolicyMaxage ignore|log|enforce agesvdE
    Enable the caching minimum max-age policy.
    PolicyMaxageURL urlsvdE
    URL describing the caching minimum freshness lifetime policy.
    PolicyNocache ignore|log|enforcesvdE
    Enable the caching no-cache policy.
    PolicyNocacheURL urlsvdE
    URL describing the caching no-cache policy.
    PolicyType ignore|log|enforce type [ type [ ... ]]svdE
    Enable the content type policy.
    PolicyTypeURL urlsvdE
    URL describing the content type policy.
    PolicyValidation ignore|log|enforcesvdE
    Enable the validation policy.
    PolicyValidationURL urlsvdE
    URL describing the content type policy.
    PolicyVary ignore|log|enforce header [ header [ ... ]]svdE
    Enable the Vary policy.
    PolicyVaryURL urlsvdE
    URL describing the content type policy.
    PolicyVersion ignore|log|enforce HTTP/0.9|HTTP/1.0|HTTP/1.1svdE
    Enable the version policy.
    PolicyVersionURL urlsvdE
    URL describing the minimum request HTTP version policy.
    PollersPerChild number 0 sM
    Number of poll threads per child process
    PrivilegesMode FAST|SECURE|SELECTIVE FAST svdD
    Trade off processing speed and efficiency vs security against malicious privileges-aware code.
    Protocol protocolsvC
    Protocol for a listening socket
    ProtocolEcho On|Off Off svX
    エコーサーバの有効無効を設定します。
    Protocols protocol ... http/1.1 svC
    Protocols available for a server/virtual host
    ProtocolsHonorOrder On|Off On svC
    Determines if order of Protocols determines precedence during negotiation
    <Proxy wildcard-url> ...</Proxy>svE
    プロキシされるリソースに適用されるコンテナ
    Proxy100Continue Off|On On svdE
    Forward 100-continue expectation to the origin server
    ProxyAddHeaders Off|On On svdE
    Add proxy information in X-Forwarded-* headers
    ProxyAsyncDelay time[s]svdE
    Time to poll synchronously before handing a connection to the +
    Protocol protocolsvC
    Protocol for a listening socket
    ProtocolEcho On|Off Off svX
    エコーサーバの有効無効を設定します。
    Protocols protocol ... http/1.1 svC
    Protocols available for a server/virtual host
    ProtocolsHonorOrder On|Off On svC
    Determines if order of Protocols determines precedence during negotiation
    <Proxy wildcard-url> ...</Proxy>svE
    プロキシされるリソースに適用されるコンテナ
    Proxy100Continue Off|On On svdE
    Forward 100-continue expectation to the origin server
    ProxyAddHeaders Off|On On svdE
    Add proxy information in X-Forwarded-* headers
    ProxyAsyncDelay time[s]svdE
    Time to poll synchronously before handing a connection to the MPM for asynchronous processing
    ProxyAsyncIdleTimeout time[s]svdE
    Inactivity timeout for asynchronous proxy connections
    ProxyBadHeader IsError|Ignore|StartBody IsError svE
    応答におかしなヘッダがある場合の扱い方を決める
    ProxyBeaconAddress address:portsvE
    Address of the reverse proxy to which a backend sends its +
    ProxyAsyncIdleTimeout time[s]svdE
    Inactivity timeout for asynchronous proxy connections
    ProxyBadHeader IsError|Ignore|StartBody IsError svE
    応答におかしなヘッダがある場合の扱い方を決める
    ProxyBeaconAddress address:portsvE
    Address of the reverse proxy to which a backend sends its announcements
    ProxyBeaconAdvertise urlsvE
    The routable URL a backend announces to the reverse proxy
    ProxyBeaconBalancer namesvE
    Name of the balancer that announced backends are added to
    ProxyBeaconInterval interval 5 svE
    How often a backend publishes its announcement
    ProxyBeaconListen [address][:port]svE
    Address on which the reverse proxy receives backend +
    ProxyBeaconAdvertise urlsvE
    The routable URL a backend announces to the reverse proxy
    ProxyBeaconBalancer namesvE
    Name of the balancer that announced backends are added to
    ProxyBeaconInterval interval 5 svE
    How often a backend publishes its announcement
    ProxyBeaconListen [address][:port]svE
    Address on which the reverse proxy receives backend beacons
    ProxyBeaconMaxSkew intervalsvE
    Maximum allowed age of a signed announcement
    ProxyBeaconSecret secretsvE
    Pre-shared secret used to authenticate announcements
    ProxyBeaconTimeout interval 0 svE
    How long the proxy waits, without an announcement, before a backend +
    ProxyBeaconMaxSkew intervalsvE
    Maximum allowed age of a signed announcement
    ProxyBeaconSecret secretsvE
    Pre-shared secret used to authenticate announcements
    ProxyBeaconTimeout interval 0 svE
    How long the proxy waits, without an announcement, before a backend is taken out of rotation
    ProxyBlock *|word|host|domain -[word|host|domain] ...svE
    プロキシ接続を禁止する語句、ホスト名、ドメインを指定する
    ProxyDomain DomainsvE
    プロキシされたリクエストのデフォルトのドメイン名
    ProxyErrorOverride On|Off Off svdE
    プロキシされたコンテンツのエラーページを上書きする
    ProxyExpressDBMFile pathnamesvE
    Pathname to DBM file.
    ProxyExpressDBMType type default svE
    DBM type of file.
    ProxyExpressEnable on|off off svE
    Enable the module functionality.
    ProxyFCGIBackendType FPM|GENERIC FPM svdhE
    Specify the type of backend FastCGI application
    ProxyFCGISetEnvIf conditional-expression +
    ProxyBlock *|word|host|domain +[word|host|domain] ...svE
    プロキシ接続を禁止する語句、ホスト名、ドメインを指定する
    ProxyDomain DomainsvE
    プロキシされたリクエストのデフォルトのドメイン名
    ProxyErrorOverride On|Off Off svdE
    プロキシされたコンテンツのエラーページを上書きする
    ProxyExpressDBMFile pathnamesvE
    Pathname to DBM file.
    ProxyExpressDBMType type default svE
    DBM type of file.
    ProxyExpressEnable on|off off svE
    Enable the module functionality.
    ProxyFCGIBackendType FPM|GENERIC FPM svdhE
    Specify the type of backend FastCGI application
    ProxyFCGISetEnvIf conditional-expression [!]environment-variable-name - [value-expression]svdhE
    Allow variables sent to FastCGI servers to be fixed up
    ProxyFtpDirCharset character_set ISO-8859-1 svdE
    Define the character set for proxied FTP listings
    ProxyFtpEscapeWildcards on|off on svdE
    Whether wildcards in requested filenames are escaped when sent to the FTP server
    ProxyFtpListOnWildcard on|off on svdE
    Whether wildcards in requested filenames trigger a file listing
    ProxyHCExpr name {ap_expr expression}svE
    Creates a named condition expression to use to determine health of the backend based on its response
    ProxyHCTemplate name parameter=setting [...]svE
    Creates a named template for setting various health check parameters
    ProxyHCTPsize size 16 sE
    Sets the total server-wide size of the threadpool used for the health check workers
    ProxyHTMLBufSize bytes 8192 svdB
    Sets the buffer size increment for buffering inline scripts and + [value-expression]svdhE
    Allow variables sent to FastCGI servers to be fixed up
    ProxyFtpDirCharset character_set ISO-8859-1 svdE
    Define the character set for proxied FTP listings
    ProxyFtpEscapeWildcards on|off on svdE
    Whether wildcards in requested filenames are escaped when sent to the FTP server
    ProxyFtpListOnWildcard on|off on svdE
    Whether wildcards in requested filenames trigger a file listing
    ProxyHCExpr name {ap_expr expression}svE
    Creates a named condition expression to use to determine health of the backend based on its response
    ProxyHCTemplate name parameter=setting [...]svE
    Creates a named template for setting various health check parameters
    ProxyHCTPsize size 16 sE
    Sets the total server-wide size of the threadpool used for the health check workers
    ProxyHTMLBufSize bytes 8192 svdB
    Sets the buffer size increment for buffering inline scripts and stylesheets.
    ProxyHTMLCharsetOut Charset | * UTF-8 svdB
    Specify a charset for mod_proxy_html output.
    ProxyHTMLDocType HTML|XHTML [Legacy]
    OR +
    ProxyHTMLCharsetOut Charset | * UTF-8 svdB
    Specify a charset for mod_proxy_html output.
    ProxyHTMLDocType HTML|XHTML [Legacy]
    OR
    ProxyHTMLDocType fpi [SGML|XML]
    OR
    ProxyHTMLDocType html5
    OR -
    ProxyHTMLDocType auto
    auto (2.5/trunk ver +svdB
    Sets an HTML or XHTML document type declaration.
    ProxyHTMLEnable On|Off Off svdB
    Turns the proxy_html filter on or off.
    ProxyHTMLEvents attribute [attribute ...]svdB
    Specify attributes to treat as scripting events.
    ProxyHTMLExtended On|Off Off svdB
    Determines whether to fix links in inline scripts, stylesheets, +
    ProxyHTMLDocType auto
    auto (2.5/trunk ver +svdB
    Sets an HTML or XHTML document type declaration.
    ProxyHTMLEnable On|Off Off svdB
    Turns the proxy_html filter on or off.
    ProxyHTMLEvents attribute [attribute ...]svdB
    Specify attributes to treat as scripting events.
    ProxyHTMLExtended On|Off Off svdB
    Determines whether to fix links in inline scripts, stylesheets, and scripting events.
    ProxyHTMLFixups [lowercase] [dospath] [reset] none svdB
    Fixes for simple HTML errors.
    ProxyHTMLInterp On|Off Off svdB
    Enables per-request interpolation of +
    ProxyHTMLFixups [lowercase] [dospath] [reset] none svdB
    Fixes for simple HTML errors.
    ProxyHTMLInterp On|Off Off svdB
    Enables per-request interpolation of ProxyHTMLURLMap rules.
    ProxyHTMLLinks element attribute [attribute2 ...]svdB
    Specify HTML elements that have URL attributes to be rewritten.
    ProxyHTMLMeta On|Off Off svdB
    Turns on or off extra pre-parsing of metadata in HTML +
    ProxyHTMLLinks element attribute [attribute2 ...]svdB
    Specify HTML elements that have URL attributes to be rewritten.
    ProxyHTMLMeta On|Off Off svdB
    Turns on or off extra pre-parsing of metadata in HTML <head> sections.
    ProxyHTMLStripComments On|Off Off svdB
    Determines whether to strip HTML comments.
    ProxyHTMLURLMap from-pattern to-pattern [flags] [cond]svdB
    Defines a rule to rewrite HTML links
    ProxyIOBufferSize bytes 8192 svE
    内部データスループットバッファのサイズを決定する
    <ProxyMatch regex> ...</ProxyMatch>svE
    正規表現でのマッチによるプロキシリソース用のディレクティブコンテナ
    ProxyMaxForwards number 10 svE
    リクエストがフォワードされるプロキシの最大数
    ProxyPass [path] !|url [key=value key=value ...]]svdE
    リモートサーバをローカルサーバの URL 空間にマップする
    ProxyPassInherit On|Off On svE
    Inherit ProxyPass directives defined from the main server
    svdE
    Enable Environment Variable interpolation in Reverse Proxy configurations
    svdE
    Maps remote servers into the local server URL-space using regular expressions
    ProxyPassReverse [path] urlsvdE
    リバースプロキシされたサーバから送られた HTTP 応答ヘッダの +
    ProxyHTMLStripComments On|Off Off svdB
    Determines whether to strip HTML comments.
    ProxyHTMLURLMap from-pattern to-pattern [flags] [cond]svdB
    Defines a rule to rewrite HTML links
    ProxyIOBufferSize bytes 8192 svE
    内部データスループットバッファのサイズを決定する
    <ProxyMatch regex> ...</ProxyMatch>svE
    正規表現でのマッチによるプロキシリソース用のディレクティブコンテナ
    ProxyMaxForwards number 10 svE
    リクエストがフォワードされるプロキシの最大数
    ProxyPass [path] !|url [key=value key=value ...]]svdE
    リモートサーバをローカルサーバの URL 空間にマップする
    ProxyPassInherit On|Off On svE
    Inherit ProxyPass directives defined from the main server
    svdE
    Enable Environment Variable interpolation in Reverse Proxy configurations
    svdE
    Maps remote servers into the local server URL-space using regular expressions
    ProxyPassReverse [path] urlsvdE
    リバースプロキシされたサーバから送られた HTTP 応答ヘッダの URL を調整する
    ProxyPassReverseCookieDomain internal-domain public-domainsvdE
    リバースプロキシサーバからの Set-Cookie ヘッダの Domain 文字列を +
    ProxyPassReverseCookieDomain internal-domain public-domainsvdE
    リバースプロキシサーバからの Set-Cookie ヘッダの Domain 文字列を 調整する
    ProxyPassReverseCookiePath internal-path public-pathsvdE
    Reverse プロキシサーバからの Set-Cookie ヘッダの Path 文字列を +
    ProxyPassReverseCookiePath internal-path public-pathsvdE
    Reverse プロキシサーバからの Set-Cookie ヘッダの Path 文字列を 調整する
    ProxyPreserveHost On|Off Off svdE
    プロキシリクエストに、受け付けた Host HTTP ヘッダを使う
    ProxyReceiveBufferSize bytes 0 svE
    プロキシされる HTTP と FTP 接続のためのネットワークバッファサイズ
    ProxyRemote match remote-serversvE
    特定のリクエストを扱う時に使われるリモートプロキシを指定する
    ProxyRemoteMatch regex remote-serversvE
    正規表現でのマッチによるリクエストを扱うリモートプロキシの指定
    ProxyRequests On|Off Off svE
    フォワード (標準の) プロキシリクエストを有効にする
    ProxySCGIInternalRedirect On|Off|Headername On svdE
    Enable or disable internal redirect responses from the +
    ProxyPreserveHost On|Off Off svdE
    プロキシリクエストに、受け付けた Host HTTP ヘッダを使う
    ProxyReceiveBufferSize bytes 0 svE
    プロキシされる HTTP と FTP 接続のためのネットワークバッファサイズ
    ProxyRemote match remote-serversvE
    特定のリクエストを扱う時に使われるリモートプロキシを指定する
    ProxyRemoteMatch regex remote-serversvE
    正規表現でのマッチによるリクエストを扱うリモートプロキシの指定
    ProxyRequests On|Off Off svE
    フォワード (標準の) プロキシリクエストを有効にする
    ProxySCGIInternalRedirect On|Off|Headername On svdE
    Enable or disable internal redirect responses from the backend
    ProxySCGISendfile On|Off|Headername Off svdE
    Enable evaluation of X-Sendfile pseudo response +
    ProxySCGISendfile On|Off|Headername Off svdE
    Enable evaluation of X-Sendfile pseudo response header
    svdE
    Set various Proxy balancer or member parameters
    ProxySourceAddress addresssvE
    Set local IP address for outgoing proxy connections
    svE
    Show Proxy LoadBalancer status in mod_status
    ProxyTimeout seconds 300 svE
    プロキシされたリクエストのネットワークタイムアウト
    ProxyVia On|Off|Full|Block Off svE
    プロキシされたリクエストの Via HTTP 応答ヘッダ +
    svdE
    Set various Proxy balancer or member parameters
    ProxySourceAddress addresssvE
    Set local IP address for outgoing proxy connections
    svE
    Show Proxy LoadBalancer status in mod_status
    ProxyTimeout seconds 300 svE
    プロキシされたリクエストのネットワークタイムアウト
    ProxyVia On|Off|Full|Block Off svE
    プロキシされたリクエストの Via HTTP 応答ヘッダ により提供される情報
    ProxyWebsocketAsync ON|OFFsvE
    Instructs this module to try to create an asynchronous tunnel
    ProxyWebsocketAsyncDelay num[ms] 0 svE
    Sets the amount of time the tunnel waits synchronously for data
    ProxyWebsocketFallbackToProxyHttp On|Off On svE
    Instructs this module to let mod_proxy_http handle the request
    ProxyWebsocketIdleTimeout num[ms] 0 svE
    Sets the maximum amount of time to wait for data on the websockets tunnel
    QualifyRedirectURL On|Off Off svdC
    Controls whether the REDIRECT_URL environment variable is +
    ProxyWebsocketAsync ON|OFFsvD
    Instructs this module to try to create an asynchronous tunnel
    ProxyWebsocketAsyncDelay num[ms] 0 svD
    Sets the amount of time the tunnel waits synchronously for data
    ProxyWebsocketFallbackToProxyHttp On|Off On svD
    Instructs this module to let mod_proxy_http handle the request
    ProxyWebsocketIdleTimeout num[ms] 0 svD
    Sets the maximum amount of time to wait for data on the websockets tunnel
    QualifyRedirectURL On|Off Off svdC
    Controls whether the REDIRECT_URL environment variable is fully qualified
    ReadBufferSize bytes 8192 svdC
    Size of the buffers used to read data
    ReadmeName filenamesvdhB
    インデックス一覧の最後に挿入されるファイルの名前
    ReceiveBufferSize bytes 0 sM
    TCP 受信バッファサイズ
    Redirect [status] URL-path -URLsvdhB
    クライアントが違う URL を取得するように外部へのリダイレクトを +
    ReadBufferSize bytes 8192 svdC
    Size of the buffers used to read data
    ReadmeName filenamesvdhB
    インデックス一覧の最後に挿入されるファイルの名前
    ReceiveBufferSize bytes 0 sM
    TCP 受信バッファサイズ
    Redirect [status] URL-path +URLsvdhB
    クライアントが違う URL を取得するように外部へのリダイレクトを 送る
    RedirectMatch [status] regex -URLsvdhB
    現在の URL への正規表現のマッチにより +
    RedirectMatch [status] regex +URLsvdhB
    現在の URL への正規表現のマッチにより 外部へのリダイレクトを送る
    RedirectPermanent URL-path URLsvdhB
    クライアントが違う URL を取得するように外部への永久的な +
    RedirectPermanent URL-path URLsvdhB
    クライアントが違う URL を取得するように外部への永久的な リダイレクトを送る
    RedirectRelative On|Off Off svdB
    Allows relative redirect targets.
    RedirectTemp URL-path URLsvdhB
    クライアントが違う URL を取得するように外部への一時的な +
    RedirectRelative On|Off Off svdB
    Allows relative redirect targets.
    RedirectTemp URL-path URLsvdhB
    クライアントが違う URL を取得するように外部への一時的な リダイレクトを送る
    RedisConnPoolTTL num[units] 15s svE
    TTL used for the connection pool with the Redis server(s)
    RedisTimeout num[units] 5s svE
    R/W timeout used for the connection with the Redis server(s)
    ReflectorHeader inputheader [outputheader]svdhB
    Reflect an input header to the output headers
    RegexDefaultOptions [none] [+|-]option [[+|-]option] ... DOTALL DOLLAR_ENDON +sC
    Allow to configure global/default options for regexes
    RegisterHttpMethod method [method [...]]sC
    Register non-standard HTTP methods
    RemoteIPHeader header-fieldsvB
    Declare the header field which should be parsed for useragent IP addresses
    RemoteIPInternalProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPInternalProxyList filenamesvB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPProxiesHeader HeaderFieldNamesvB
    Declare the header field which will record all intermediate IP addresses
    RemoteIPProxyProtocol On|OffsvB
    Enable or disable PROXY protocol handling
    RemoteIPProxyProtocolExceptions host|range [host|range] [host|range]svB
    Disable processing of PROXY header for certain hosts or networks
    RemoteIPTrustedProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoteIPTrustedProxyList filenamesvB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoveCharset extension [extension] -...vdh
    ファイルの拡張子に関連付けられたすべての文字セット +
    RedisConnPoolTTL num[units] 15s svE
    TTL used for the connection pool with the Redis server(s)
    RedisTimeout num[units] 5s svE
    R/W timeout used for the connection with the Redis server(s)
    ReflectorHeader inputheader [outputheader]svdhB
    Reflect an input header to the output headers
    RegexDefaultOptions [none] [+|-]option [[+|-]option] ... DOTALL DOLLAR_ENDON +sC
    Allow to configure global/default options for regexes
    RegisterHttpMethod method [method [...]]sC
    Register non-standard HTTP methods
    RemoteIPHeader header-fieldsvB
    Declare the header field which should be parsed for useragent IP addresses
    RemoteIPInternalProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPInternalProxyList filenamesvB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPProxiesHeader HeaderFieldNamesvB
    Declare the header field which will record all intermediate IP addresses
    RemoteIPProxyProtocol On|OffsvB
    Enable or disable PROXY protocol handling
    RemoteIPProxyProtocolExceptions host|range [host|range] [host|range]svB
    Disable processing of PROXY header for certain hosts or networks
    RemoteIPTrustedProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoteIPTrustedProxyList filenamesvB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoveCharset extension [extension] +...vdh
    ファイルの拡張子に関連付けられたすべての文字セット を解除する
    RemoveEncoding extension [extension] -...vdh
    ファイルの拡張子に関連付けられたすべてのコンテントエンコーディング +
    RemoveEncoding extension [extension] +...vdh
    ファイルの拡張子に関連付けられたすべてのコンテントエンコーディング を解除する
    RemoveHandler extension [extension] -...vdh
    ファイルの拡張子に関連付けられたすべてのハンドラを +
    RemoveHandler extension [extension] +...vdh
    ファイルの拡張子に関連付けられたすべてのハンドラを 解除する
    RemoveInputFilter extension [extension] -...vdh
    ファイル拡張子に関連付けられた入力フィルタを解除する
    RemoveLanguage extension [extension] -...vdh
    ファイル拡張子に関連付けられた言語を解除する
    RemoveOutputFilter extension [extension] -...vdh
    ファイル拡張子に関連付けられた出力フィルタを解除する
    RemoveType extension [extension] -...vdh
    ファイルの拡張子と関連付けられたコンテントタイプを +
    RemoveInputFilter extension [extension] +...vdh
    ファイル拡張子に関連付けられた入力フィルタを解除する
    RemoveLanguage extension [extension] +...vdh
    ファイル拡張子に関連付けられた言語を解除する
    RemoveOutputFilter extension [extension] +...vdh
    ファイル拡張子に関連付けられた出力フィルタを解除する
    RemoveType extension [extension] +...vdh
    ファイルの拡張子と関連付けられたコンテントタイプを 解除する
    RequestHeader set|append|add|unset header -[value] [early|env=[!]variable]svdhE
    HTTP リクエストヘッダの設定
    RequestReadTimeout +
    RequestHeader set|append|add|unset header +[value] [early|env=[!]variable]svdhE
    HTTP リクエストヘッダの設定
    RequestReadTimeout [handshake=timeout[-maxtimeout][,MinRate=rate] [header=timeout[-maxtimeout][,MinRate=rate] [body=timeout[-maxtimeout][,MinRate=rate] - handshake=0 header= +svE
    Set timeout values for completing the TLS handshake, receiving + handshake=0 header= +svE
    Set timeout values for completing the TLS handshake, receiving the request headers and/or body from client.
    Require [not] entity-name - [entity-name] ...dhB
    Tests whether an authenticated user is authorized by +
    Require [not] entity-name + [entity-name] ...dhB
    Tests whether an authenticated user is authorized by an authorization provider.
    <RequireAll> ... </RequireAll>dhB
    Enclose a group of authorization directives of which none +
    <RequireAll> ... </RequireAll>dhB
    Enclose a group of authorization directives of which none must fail and at least one must succeed for the enclosing directive to succeed.
    <RequireAny> ... </RequireAny>dhB
    Enclose a group of authorization directives of which one +
    <RequireAny> ... </RequireAny>dhB
    Enclose a group of authorization directives of which one must succeed for the enclosing directive to succeed.
    <RequireNone> ... </RequireNone>dhB
    Enclose a group of authorization directives of which none +
    <RequireNone> ... </RequireNone>dhB
    Enclose a group of authorization directives of which none must succeed for the enclosing directive to not fail.
    RewriteBase URL-pathdhE
    Sets the base URL for per-directory rewrites
    RewriteCond - TestString [!]CondPattern [flags]svdhE
    Defines a condition under which rewriting will take place +
    RewriteBase URL-pathdhE
    Sets the base URL for per-directory rewrites
    RewriteCond + TestString [!]CondPattern [flags]svdhE
    Defines a condition under which rewriting will take place
    RewriteEngine on|off off svdhE
    Enables or disables runtime rewriting engine
    RewriteMap MapName MapType:MapSource +
    RewriteEngine on|off off svdhE
    Enables or disables runtime rewriting engine
    RewriteMap MapName MapType:MapSource [MapTypeOptions] -svE
    Defines a mapping function for key-lookup
    RewriteOptions OptionssvdhE
    Sets some special options for the rewrite engine
    RewriteRule - [!]Pattern Substitution [flags]svdhE
    Defines rules for the rewriting engine
    RLimitCPU seconds|max [seconds|max]svdhC
    Apache の子プロセスから起動されたプロセスの CPU 消費量を +svE
    Defines a mapping function for key-lookup
    RewriteOptions OptionssvdhE
    Sets some special options for the rewrite engine
    RewriteRule + [!]Pattern Substitution [flags]svdhE
    Defines rules for the rewriting engine
    RLimitCPU seconds|max [seconds|max]svdhC
    Apache の子プロセスから起動されたプロセスの CPU 消費量を 制限する
    RLimitMEM bytes|max [bytes|max]svdhC
    Apache の子プロセスから起動されたプロセスのメモリ消費量を +
    RLimitMEM bytes|max [bytes|max]svdhC
    Apache の子プロセスから起動されたプロセスのメモリ消費量を 制限する
    RLimitNPROC number|max [number|max]svdhC
    Apache の子プロセスから起動されたプロセスが起動するプロセスの +
    RLimitNPROC number|max [number|max]svdhC
    Apache の子プロセスから起動されたプロセスが起動するプロセスの 数を制限する
    Satisfy Any|All All dhE
    ホストレベルのアクセス制御とユーザ認証との相互作用を指定
    ScoreBoardFile file-path logs/apache_status sM
    子プロセスと連携するためのデータを保存する +
    Satisfy Any|All All dhE
    ホストレベルのアクセス制御とユーザ認証との相互作用を指定
    ScoreBoardFile file-path logs/apache_status sM
    子プロセスと連携するためのデータを保存する ファイルの位置
    Script method cgi-scriptsvdB
    特定のリクエストメソッドに対して CGI スクリプトを +
    Script method cgi-scriptsvdB
    特定のリクエストメソッドに対して CGI スクリプトを 実行するように設定
    ScriptAlias URL-path -file-path|directory-pathsvdB
    URL をファイルシステムの位置へマップし、マップ先を +
    ScriptAlias URL-path +file-path|directory-pathsvdB
    URL をファイルシステムの位置へマップし、マップ先を CGI スクリプトに指定
    ScriptAliasMatch regex -file-path|directory-pathsvB
    URL を正規表現を使ってファイルシステムの位置へマップし、マップ先を +
    ScriptAliasMatch regex +file-path|directory-pathsvB
    URL を正規表現を使ってファイルシステムの位置へマップし、マップ先を CGI スクリプトに指定
    ScriptInterpreterSource Registry|Registry-Strict|Script Script svdhC
    CGI スクリプトのインタープリタの位置を調べるための手法
    ScriptLog file-pathsvB
    CGI スクリプトのエラーログファイルの場所
    ScriptLogBuffer bytes 1024 svB
    スクリプトログに記録される PUT や POST リクエストの内容の上限
    ScriptLogLength bytes 10385760 svB
    CGI スクリプトのログファイルの大きさの上限
    ScriptSock file-path logs/cgisock sB
    CGI デーモンとの通信に使われるソケットのファイル名の接頭辞
    SecureListen [IP-address:]portnumber -Certificate-Name [MUTUAL]sB
    Enables SSL encryption for the specified port
    SeeRequestTail On|Off Off sC
    Determine if mod_status displays the first 63 characters +
    ScriptInterpreterSource Registry|Registry-Strict|Script Script svdhC
    CGI スクリプトのインタープリタの位置を調べるための手法
    ScriptLog file-pathsvB
    CGI スクリプトのエラーログファイルの場所
    ScriptLogBuffer bytes 1024 svB
    スクリプトログに記録される PUT や POST リクエストの内容の上限
    ScriptLogLength bytes 10385760 svB
    CGI スクリプトのログファイルの大きさの上限
    ScriptSock file-path logs/cgisock sB
    CGI デーモンとの通信に使われるソケットのファイル名の接頭辞
    SecureListen [IP-address:]portnumber +Certificate-Name [MUTUAL]sB
    Enables SSL encryption for the specified port
    SeeRequestTail On|Off Off sC
    Determine if mod_status displays the first 63 characters of a request or the last 63, assuming the request itself is greater than 63 chars.
    SendBufferSize bytes 0 sM
    TCP バッファサイズ
    ServerAdmin email-address|URLsvC
    サーバがクライアントに送るエラーメッセージに含める電子メールの +
    SendBufferSize bytes 0 sM
    TCP バッファサイズ
    ServerAdmin email-address|URLsvC
    サーバがクライアントに送るエラーメッセージに含める電子メールの アドレス
    ServerAlias hostname [hostname] ...vC
    リクエストを名前ベースのバーチャルホストにマッチさせているときに +
    ServerAlias hostname [hostname] ...vC
    リクエストを名前ベースのバーチャルホストにマッチさせているときに 使用されるホストの別名
    ServerLimit numbersM
    設定可能なサーバプロセス数の上限
    ServerName [scheme://]fully-qualified-domain-name[:port]svC
    サーバが自分自身を示すときに使うホスト名とポート
    ServerPath URL-pathvC
    非互換のブラウザが名前ベースのバーチャルホストにアクセスしたときの +
    ServerLimit numbersM
    設定可能なサーバプロセス数の上限
    ServerName [scheme://]fully-qualified-domain-name[:port]svC
    サーバが自分自身を示すときに使うホスト名とポート
    ServerPath URL-pathvC
    非互換のブラウザが名前ベースのバーチャルホストにアクセスしたときの ための互換用 URL パス名
    ServerRoot directory-path /usr/local/apache sC
    インストールされたサーバのベースディレクトリ
    ServerSignature On|Off|EMail Off svdhC
    サーバが生成するドキュメントのフッタを設定
    ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full Full sC
    Server HTTP 応答ヘッダを設定する
    Session On|Off Off svdhE
    Enables a session for the current directory or location
    SessionCookieMaxAge On|Off On svdhE
    Control whether session cookies have Max-Age transmitted to the client
    SessionCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session
    SessionCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session
    SessionCookieRemove On|Off Off svdhE
    Control for whether session cookies should be removed from incoming HTTP headers
    SessionCryptoCipher name aes256 svdhX
    The crypto cipher to be used to encrypt the session
    SessionCryptoDriver name [param[=value]]sX
    The crypto driver to be used to encrypt the session
    SessionCryptoPassphrase secret [ secret ... ] svdhX
    The key used to encrypt the session
    SessionCryptoPassphraseFile filenamesvdX
    File containing keys used to encrypt the session
    SessionDBDCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session ID
    SessionDBDCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session ID
    SessionDBDCookieRemove On|Off On svdhE
    Control for whether session ID cookies should be removed from incoming HTTP headers
    SessionDBDDeleteLabel label deletesession svdhE
    The SQL query to use to remove sessions from the database
    SessionDBDInsertLabel label insertsession svdhE
    The SQL query to use to insert sessions into the database
    SessionDBDPerUser On|Off Off svdhE
    Enable a per user session
    SessionDBDSelectLabel label selectsession svdhE
    The SQL query to use to select sessions from the database
    SessionDBDUpdateLabel label updatesession svdhE
    The SQL query to use to update existing sessions in the database
    SessionEnv On|Off Off svdhE
    Control whether the contents of the session are written to the +
    ServerRoot directory-path /usr/local/apache sC
    インストールされたサーバのベースディレクトリ
    ServerSignature On|Off|EMail Off svdhC
    サーバが生成するドキュメントのフッタを設定
    ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full Full sC
    Server HTTP 応答ヘッダを設定する
    Session On|Off Off svdhE
    Enables a session for the current directory or location
    SessionCookieMaxAge On|Off On svdhE
    Control whether session cookies have Max-Age transmitted to the client
    SessionCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session
    SessionCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session
    SessionCookieRemove On|Off Off svdhE
    Control for whether session cookies should be removed from incoming HTTP headers
    SessionCryptoCipher name aes256 svdhX
    The crypto cipher to be used to encrypt the session
    SessionCryptoDriver name [param[=value]]sX
    The crypto driver to be used to encrypt the session
    SessionCryptoPassphrase secret [ secret ... ] svdhX
    The key used to encrypt the session
    SessionCryptoPassphraseFile filenamesvdX
    File containing keys used to encrypt the session
    SessionDBDCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session ID
    SessionDBDCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session ID
    SessionDBDCookieRemove On|Off On svdhE
    Control for whether session ID cookies should be removed from incoming HTTP headers
    SessionDBDDeleteLabel label deletesession svdhE
    The SQL query to use to remove sessions from the database
    SessionDBDInsertLabel label insertsession svdhE
    The SQL query to use to insert sessions into the database
    SessionDBDPerUser On|Off Off svdhE
    Enable a per user session
    SessionDBDSelectLabel label selectsession svdhE
    The SQL query to use to select sessions from the database
    SessionDBDUpdateLabel label updatesession svdhE
    The SQL query to use to update existing sessions in the database
    SessionEnv On|Off Off svdhE
    Control whether the contents of the session are written to the HTTP_SESSION environment variable
    SessionExclude pathsvdhE
    Define URL prefixes for which a session is ignored
    SessionExpiryUpdateInterval interval 0 (always update) svdhE
    Define the number of seconds a session's expiry may change without +
    SessionExclude pathsvdhE
    Define URL prefixes for which a session is ignored
    SessionExpiryUpdateInterval interval 0 (always update) svdhE
    Define the number of seconds a session's expiry may change without the session being updated
    SessionHeader headersvdhE
    Import session updates from a given HTTP response header
    SessionInclude pathsvdhE
    Define URL prefixes for which a session is valid
    SessionMaxAge maxage 0 svdhE
    Define a maximum age in seconds for a session
    SetEnv env-variable valuesvdhB
    環境変数を設定する
    SetEnvIf attribute +
    SessionHeader headersvdhE
    Import session updates from a given HTTP response header
    SessionInclude pathsvdhE
    Define URL prefixes for which a session is valid
    SessionMaxAge maxage 0 svdhE
    Define a maximum age in seconds for a session
    SetEnv env-variable valuesvdhB
    環境変数を設定する
    SetEnvIf attribute regex [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    リクエストの属性に基づいて環境変数を設定する + [[!]env-variable[=value]] ...svdhB
    リクエストの属性に基づいて環境変数を設定する
    svdhB
    Sets environment variables based on an ap_expr expression
    SetEnvIfNoCase attribute regex +
    svdhB
    Sets environment variables based on an ap_expr expression
    SetEnvIfNoCase attribute regex [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    リクエストの属性に基づいて大文字小文字を区別せずに環境変数を設定する
    SetHandler handler-name|NonesvdhC
    マッチするファイルがハンドラで処理されるようにする
    SetInputFilter filter[;filter...]svdhC
    クライアントのリクエストや POST の入力を処理するフィルタを設定する
    SetOutputFilter filter[;filter...]svdhC
    サーバの応答を処理するフィルタを設定する
    SSIEndTag tag "-->" svB
    include 要素を終了させる文字列
    SSIErrorMsg message "[an error occurred +svdhB
    SSI のエラーがあったときに表示されるエラーメッセージ
    SSIETag on|off off dhB
    Controls whether ETags are generated by the server.
    SSILastModified on|off off dhB
    Controls whether Last-Modified headers are generated by the + [[!]env-variable[=value]] ...svdhB
    リクエストの属性に基づいて大文字小文字を区別せずに環境変数を設定する
    SetHandler handler-name|NonesvdhC
    マッチするファイルがハンドラで処理されるようにする
    SetInputFilter filter[;filter...]svdhC
    クライアントのリクエストや POST の入力を処理するフィルタを設定する
    SetOutputFilter filter[;filter...]svdhC
    サーバの応答を処理するフィルタを設定する
    SSIEndTag tag "-->" svB
    include 要素を終了させる文字列
    SSIErrorMsg message "[an error occurred +svdhB
    SSI のエラーがあったときに表示されるエラーメッセージ
    SSIETag on|off off dhB
    Controls whether ETags are generated by the server.
    SSILastModified on|off off dhB
    Controls whether Last-Modified headers are generated by the server.
    SSILegacyExprParser on|off off dhB
    Enable compatibility mode for conditional expressions.
    SSIStartTag tag "<!--#" svB
    include 要素を開始する文字列
    SSITimeFormat formatstring "%A, %d-%b-%Y %H:%M +svdhB
    日付けを現す文字列の書式を設定する
    SSIUndefinedEcho string "(none)" svdhB
    未定義の変数が echo されたときに表示される文字列
    SSLCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates +
    SSILegacyExprParser on|off off dhB
    Enable compatibility mode for conditional expressions.
    SSIStartTag tag "<!--#" svB
    include 要素を開始する文字列
    SSITimeFormat formatstring "%A, %d-%b-%Y %H:%M +svdhB
    日付けを現す文字列の書式を設定する
    SSIUndefinedEcho string "(none)" svdhB
    未定義の変数が echo されたときに表示される文字列
    SSLCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates for Client Auth
    SSLCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for +
    SSLCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for Client Auth
    SSLCACertificateURI urisvE
    Server CA certificate store for Client Authentication
    SSLCADNRequestFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates for defining acceptable CA names
    SSLCADNRequestPath directory-pathsvE
    Directory of PEM-encoded CA Certificates for defining acceptable CA names
    SSLCARevocationCheck chain|leaf|none [flags ...] none svE
    Enable CRL-based revocation checking
    SSLCARevocationFile file-pathsvE
    File of concatenated PEM-encoded CA CRLs for +
    SSLCADNRequestURI urisvE
    certificate store of CA Certificates for defining +acceptable CA names
    SSLCARevocationCheck chain|leaf|none [flags ...] none svE
    Enable CRL-based revocation checking
    SSLCARevocationFile file-pathsvE
    File of concatenated PEM-encoded CA CRLs for Client Auth
    SSLCARevocationPath directory-pathsvE
    Directory of PEM-encoded CA CRLs for +
    SSLCARevocationPath directory-pathsvE
    Directory of PEM-encoded CA CRLs for Client Auth
    SSLCARevocationURI urisvE
    Server CA certificate revocation list store for Client Authentication
    SSLCertificateChainFile file-pathsvE
    File of PEM-encoded Server CA Certificates
    SSLCertificateFile file-path|certidsvE
    Server PEM-encoded X.509 certificate data file or token identifier
    SSLCertificateKeyFile file-path|keyidsvE
    Server PEM-encoded private key file
    SSLCipherSuite [protocol] cipher-spec DEFAULT (depends on +svdhE
    Cipher Suite available for negotiation in SSL +
    SSLCertificateURI urisvE
    Server certificate and key store
    SSLCipherSuite [protocol] cipher-spec DEFAULT (depends on +svdhE
    Cipher Suite available for negotiation in SSL handshake
    SSLClientHelloVars on|off off svE
    Enable collection of ClientHello variables
    SSLCompression on|off off svE
    Enable compression on the SSL level
    SSLCryptoDevice engine builtin sE
    Enable use of a cryptographic hardware accelerator
    SSLECHKeyDir dirnamesE
    Load the set of Encrypted Client Hello (ECH) PEM files in the named directory
    SSLEngine on|off off svE
    SSL Engine Operation Switch
    SSLFIPS on|off off sE
    SSL FIPS mode Switch
    SSLHonorCipherOrder on|off off svE
    Option to prefer the server's cipher preference order
    SSLOCSPDefaultResponder urisvE
    Set the default responder URI for OCSP validation
    SSLOCSPEnable on|leaf|off [flags] off svE
    Enable OCSP validation of the client certificate chain
    SSLOCSPNoverify on|off off svE
    skip the OCSP responder certificates verification
    SSLOCSPOverrideResponder on|off off svE
    Force use of the default responder URI for OCSP validation
    SSLOCSPProxyURL urlsvE
    Proxy URL to use for OCSP requests
    SSLOCSPResponderCertificateFile filesvE
    Set of trusted PEM encoded OCSP responder certificates
    SSLOCSPResponderTimeout seconds 10 svE
    Timeout for OCSP queries
    SSLOCSPResponseMaxAge seconds -1 svE
    Maximum allowable age for OCSP responses
    SSLOCSPResponseTimeSkew seconds 300 svE
    Maximum allowable time skew for OCSP response validation
    SSLOCSPUseRequestNonce on|off on svE
    Use a nonce within OCSP queries
    SSLOpenSSLConfCmd command-name command-valuesvE
    Configure OpenSSL parameters through its SSL_CONF API
    SSLOptions [+|-]option ...svdhE
    Configure various SSL engine run-time options
    SSLPassPhraseDialog type builtin sE
    Type of pass phrase dialog for encrypted private +
    SSLClientHelloVars on|off off svE
    Enable collection of ClientHello variables
    SSLCompression on|off off svE
    Enable compression on the SSL level
    SSLCryptoDevice engine builtin sE
    Enable use of a cryptographic hardware accelerator
    SSLECHKeyDir dirnamesE
    Load the set of Encrypted Client Hello (ECH) PEM files in the named directory
    SSLEngine on|off off svE
    SSL Engine Operation Switch
    SSLFIPS on|off off sE
    SSL FIPS mode Switch
    SSLHonorCipherOrder on|off off svE
    Option to prefer the server's cipher preference order
    SSLOCSPDefaultResponder urisvE
    Set the default responder URI for OCSP validation
    SSLOCSPEnable on|leaf|off [flags] off svE
    Enable OCSP validation of the client certificate chain
    SSLOCSPNoverify on|off off svE
    skip the OCSP responder certificates verification
    SSLOCSPOverrideResponder on|off off svE
    Force use of the default responder URI for OCSP validation
    SSLOCSPProxyURL urlsvE
    Proxy URL to use for OCSP requests
    SSLOCSPResponderCertificateFile filesvE
    Set of trusted PEM encoded OCSP responder certificates
    SSLOCSPResponderTimeout seconds 10 svE
    Timeout for OCSP queries
    SSLOCSPResponseMaxAge seconds -1 svE
    Maximum allowable age for OCSP responses
    SSLOCSPResponseTimeSkew seconds 300 svE
    Maximum allowable time skew for OCSP response validation
    SSLOCSPUseRequestNonce on|off on svE
    Use a nonce within OCSP queries
    SSLOpenSSLConfCmd command-name command-valuesvE
    Configure OpenSSL parameters through its SSL_CONF API
    SSLOptions [+|-]option ...svdhE
    Configure various SSL engine run-time options
    SSLPassPhraseDialog type builtin sE
    Type of pass phrase dialog for encrypted private keys
    SSLPolicy namesvE
    Apply a SSLPolicy by name
    SSLProtocol [+|-]protocol ... all -SSLv3 svE
    Configure usable SSL/TLS protocol versions
    SSLProxyCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates +
    SSLPolicy namesvE
    Apply a SSLPolicy by name
    SSLProtocol [+|-]protocol ... all -SSLv3 svE
    Configure usable SSL/TLS protocol versions
    SSLProxyCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates for Remote Server Auth
    SSLProxyCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for +
    SSLProxyCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for Remote Server Auth
    SSLProxyCACertificateURI urisvE
    Proxy CA certificate store for Remote Server Auth
    SSLProxyCARevocationCheck chain|leaf|none none svE
    Enable CRL-based revocation checking for Remote Server Auth
    SSLProxyCARevocationFile file-pathsvE
    File of concatenated PEM-encoded CA CRLs for Remote Server Auth
    SSLProxyCARevocationPath directory-pathsvE
    Directory of PEM-encoded CA CRLs for Remote Server Auth
    SSLProxyCheckPeerCN on|off on svE
    Whether to check the remote server certificate's CN field +
    SSLProxyCARevocationURI urisvE
    Proxy CA certificate revocation list store for Remote Server Auth
    SSLProxyCheckPeerCN on|off on svE
    Whether to check the remote server certificate's CN field
    SSLProxyCheckPeerExpire on|off on svE
    Whether to check if remote server certificate is expired +
    SSLProxyCheckPeerExpire on|off on svE
    Whether to check if remote server certificate is expired
    SSLProxyCheckPeerName on|off on svE
    Configure host name checking for remote server certificates +
    SSLProxyCheckPeerName on|off on svE
    Configure host name checking for remote server certificates
    SSLProxyCipherSuite [protocol] cipher-spec ALL:!ADH:RC4+RSA:+H +svE
    Cipher Suite available for negotiation in SSL +
    SSLProxyCipherSuite [protocol] cipher-spec ALL:!ADH:RC4+RSA:+H +svE
    Cipher Suite available for negotiation in SSL proxy handshake
    SSLProxyEngine on|off off svE
    SSL Proxy Engine Operation Switch
    SSLProxyMachineCertificateChainFile filenamesvE
    File of concatenated PEM-encoded CA certificates to be used by the proxy for choosing a certificate
    SSLProxyMachineCertificateFile filenamesvE
    File of concatenated PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificatePath directorysvE
    Directory of PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyEngine on|off off svE
    SSL Proxy Engine Operation Switch
    SSLProxyMachineCertificateChainFile filenamesvE
    File of concatenated PEM-encoded CA certificates to be used by the proxy for choosing a certificate
    SSLProxyMachineCertificateFile filenamesvE
    File of concatenated PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificatePath directorysvE
    Directory of PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificateURI urisvE
    Proxy certificate and key stores
    SSLProxyProtocol [+|-]protocol ... all -SSLv3 svE
    Configure usable SSL protocol flavors for proxy usage
    SSLProxyVerify level none svE
    Type of remote server Certificate verification
    SSLProxyVerifyDepth number 1 svE
    Maximum depth of CA Certificates in Remote Server @@ -1232,15 +1241,15 @@ Certificate verification
    User unix-userid #-1 sB
    The userid under which the server will answer requests
    UserDir directory-filename [directory-filename] ...svB
    ユーザ専用ディレクトリの位置
    VHostCGIMode On|Off|Secure On vX
    Determines whether the virtualhost can run +
    VHostCGIMode On|Off|Secure On vD
    Determines whether the virtualhost can run subprocesses, and the privileges available to subprocesses.
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...vX
    Assign arbitrary privileges to subprocesses created +
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...vD
    Assign arbitrary privileges to subprocesses created by a virtual host.
    VHostGroup unix-groupidvX
    Sets the Group ID under which a virtual host runs.
    VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...vX
    Assign arbitrary privileges to a virtual host.
    VHostSecure On|Off On vX
    Determines whether the server runs with enhanced security +
    VHostGroup unix-groupidvD
    Sets the Group ID under which a virtual host runs.
    VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...vD
    Assign arbitrary privileges to a virtual host.
    VHostSecure On|Off On vD
    Determines whether the server runs with enhanced security for the virtualhost.
    VHostUser unix-useridvX
    Sets the User ID under which a virtual host runs.
    VHostUser unix-useridvD
    Sets the User ID under which a virtual host runs.
    VirtualDocumentRoot interpolated-directory|none none svE
    Dynamically configure the location of the document root for a given virtual host
    VirtualDocumentRootIP interpolated-directory|none none svE
    Dynamically configure the location of the document root diff --git a/docs/manual/mod/quickreference.html.ko.euc-kr b/docs/manual/mod/quickreference.html.ko.euc-kr index 6930107cf6..babae52578 100644 --- a/docs/manual/mod/quickreference.html.ko.euc-kr +++ b/docs/manual/mod/quickreference.html.ko.euc-kr @@ -119,7 +119,7 @@ type
    AliasPreservePath OFF|ON OFF svdB
    Map the full path after the alias in a location.
    Allow from all|host|env=[!]env-variable -[host|env=[!]env-variable] ...dhE
    Controls which hosts can access an area of the +[host|env=[!]env-variable] ...dhD
    Controls which hosts can access an area of the server
    AllowCONNECT port[-port] [port[-port]] ... | None 443 563 svE
    Ports that are allowed to CONNECT through the @@ -371,20 +371,20 @@ switch before dumping core
    CryptoIV value none svdhE
    IV (Initialization Vector) to be used by the crypto filter
    CryptoKey value none svdhE
    Key to be used by the crypto filter
    CryptoSize integer 131072 svdhE
    Maximum size in bytes to buffer by the crypto filter
    CTAuditStorage directorysE
    Existing directory where data for off-line audit will be stored
    CTLogClient executablesE
    Location of certificate-transparency log client tool
    CTLogConfigDB filenamesE
    Log configuration database supporting dynamic updates
    CTMaxSCTAge num-secondssE
    Maximum age of SCT obtained from a log, before it will be +
    CTAuditStorage directorysD
    Existing directory where data for off-line audit will be stored
    CTLogClient executablesD
    Location of certificate-transparency log client tool
    CTLogConfigDB filenamesD
    Log configuration database supporting dynamic updates
    CTMaxSCTAge num-secondssD
    Maximum age of SCT obtained from a log, before it will be refreshed
    CTProxyAwareness oblivious|aware|requiresvE
    Level of CT awareness and enforcement for a proxy +
    CTProxyAwareness oblivious|aware|requiresvD
    Level of CT awareness and enforcement for a proxy
    CTSCTStorage directorysE
    Existing directory where SCTs are managed
    CTServerHelloSCTLimit limitsE
    Limit on number of SCTs that can be returned in +
    CTSCTStorage directorysD
    Existing directory where SCTs are managed
    CTServerHelloSCTLimit limitsD
    Limit on number of SCTs that can be returned in ServerHello
    CTStaticLogConfig log-id|- public-key-file|- 1|0|- min-timestamp|- max-timestamp|- -log-URL|-sE
    Static configuration of information about a log
    CTStaticSCTs certificate-pem-file sct-directorysE
    Static configuration of one or more SCTs for a server certificate +log-URL|-sD
    Static configuration of information about a log
    CTStaticSCTs certificate-pem-file sct-directorysD
    Static configuration of one or more SCTs for a server certificate
    CustomLog file|pipe format|nickname @@ -433,7 +433,7 @@ which no other media type configuration could be found.
    DeflateMemLevel value 9 svE
    zlibÀÌ ¾ÐÃàÇÒ¶§ »ç¿ëÇÏ´Â ¸Þ¸ð¸®·®
    DeflateWindowSize value 15 svE
    Zlib ¾ÐÃà window size
    Deny from all|host|env=[!]env-variable -[host|env=[!]env-variable] ...dhE
    Controls which hosts are denied access to the +[host|env=[!]env-variable] ...dhD
    Controls which hosts are denied access to the server
    <Directory directory-path> ... </Directory>svC
    Enclose a group of directives that apply only to the @@ -451,7 +451,7 @@ the contents of file-system directories matching a regular expression.
    DirectorySlash On|Off On svdhB
    ¸¶Áö¸· ½½·¡½¬ ¸®´ÙÀÌ·º¼ÇÀ» Ű°í ²ö´Ù
    DocumentRoot directory-path "/usr/local/apache/ +svC
    Directory that forms the main document tree visible from the web
    DTracePrivileges On|Off Off sX
    Determines whether the privileges required by dtrace are enabled.
    DTracePrivileges On|Off Off sD
    Determines whether the privileges required by dtrace are enabled.
    DumpIOInput On|Off Off sE
    Dump all input data to the error log
    DumpIOOutput On|Off Off sE
    Dump all output data to the error log
    <Else> ... </Else>svdhC
    Contains directives that apply only if the condition of a @@ -758,432 +758,441 @@ simultaneously
    MDDriveMode always|auto|manual auto sX
    former name of MDRenewMode.
    MDExternalAccountBinding key-id hmac-64 | none | file none sX
    Set the external account binding keyid and hmac values to use at CA
    MDHttpProxy urlsX
    Define a proxy for outgoing connections.
    MDInitialDelay duration 0s sX
    How long to delay the first certificate check.
    MDMatchNames all|servernames all sX
    Determines how DNS names are matched to vhosts
    MDMember hostnamesX
    Additional hostname for the managed domain.
    MDMembers auto|manual auto sX
    Control if the alias domain names are automatically added.
    MDMessageCmd path-to-cmd optional-argssX
    Handle events for Manage Domains
    MDMustStaple on|off off sX
    Control if new certificates carry the OCSP Must Staple flag.
    MDNotifyCmd path [ args ]sX
    Run a program when a Managed Domain is ready.
    MDomain dns-name [ other-dns-name... ] [auto|manual]sX
    Define list of domain names that belong to one group.
    <MDomainSet dns-name [ other-dns-name... ]>...</MDomainSet>sX
    Container for directives applied to the same managed domains.
    MDPortMap map1 [ map2 ] http:80 https:443 sX
    Map external to internal ports for domain ownership verification.
    MDPrivateKeys type [ params... ] RSA 2048 sX
    Set type and size of the private keys generated.
    MDProfile namesX
    Use a specific ACME profile from the CA
    MDProfileMandatory on|off off sX
    Control if an MDProfile is mandatory.
    MDRenewMode always|auto|manual auto sX
    Controls if certificates shall be renewed.
    MDRenewViaARI on|off on sX
    usage of the ACME ARI extension (rfc9773).
    MDRenewWindow duration 33% sX
    Control when a certificate will be renewed.
    MDRequireHttps off|temporary|permanent off sX
    Redirects http: traffic to https: for Managed Domains.
    MDRetryDelay duration 30s sX
    Time length for first retry, doubled on every consecutive error.
    MDRetryFailover number 13 sX
    The number of errors before a failover to another CA is triggered
    MDServerStatus on|off off sX
    Control if Managed Domain information is added to server-status.
    MDStapleOthers on|off on sX
    Enable stapling for certificates not managed by mod_md.
    MDStapling on|off off sX
    Enable stapling for all or a particular MDomain.
    MDStaplingKeepResponse duration 7d sX
    Controls when old responses should be removed.
    MDStaplingRenewWindow duration 33% sX
    Control when the stapling responses will be renewed.
    MDStoreDir path md sX
    Path on the local file system to store the Managed Domains data.
    MDStoreLocks on|off|duration off sX
    Configure locking of store for updates
    MDWarnWindow duration 10% sX
    Define the time window when you want to be warned about an expiring certificate.
    MemcacheConnTTL num[units] 15s svE
    Keepalive time for idle connections
    MergeSlashes ON|OFF ON svC
    Controls whether the server merges consecutive slashes in URLs. +
    MDHttpProxyCACertificateFile path-to-pem-file none sX
    Sets the root (CA) certificates to use for TLS connections to the http-proxy.
    MDInitialDelay duration 0s sX
    How long to delay the first certificate check.
    MDMatchNames all|servernames all sX
    Determines how DNS names are matched to vhosts
    MDMember hostnamesX
    Additional hostname for the managed domain.
    MDMembers auto|manual auto sX
    Control if the alias domain names are automatically added.
    MDMessageCmd path-to-cmd optional-argssX
    Handle events for Manage Domains
    MDMustStaple on|off off sX
    Control if new certificates carry the OCSP Must Staple flag.
    MDNotifyCmd path [ args ]sX
    Run a program when a Managed Domain is ready.
    MDomain dns-name [ other-dns-name... ] [auto|manual]sX
    Define list of domain names that belong to one group.
    <MDomainSet dns-name [ other-dns-name... ]>...</MDomainSet>sX
    Container for directives applied to the same managed domains.
    MDPortMap map1 [ map2 ] http:80 https:443 sX
    Map external to internal ports for domain ownership verification.
    MDPrivateKeys type [ params... ] RSA 2048 sX
    Set type and size of the private keys generated.
    MDProfile namesX
    Use a specific ACME profile from the CA
    MDProfileMandatory on|off off sX
    Control if an MDProfile is mandatory.
    MDRenewMode always|auto|manual auto sX
    Controls if certificates shall be renewed.
    MDRenewViaARI on|off on sX
    usage of the ACME ARI extension (rfc9773).
    MDRenewWindow duration 33% sX
    Control when a certificate will be renewed.
    MDRequireHttps off|temporary|permanent off sX
    Redirects http: traffic to https: for Managed Domains.
    MDRetryDelay duration 30s sX
    Time length for first retry, doubled on every consecutive error.
    MDRetryFailover number 13 sX
    The number of errors before a failover to another CA is triggered
    MDServerStatus on|off off sX
    Control if Managed Domain information is added to server-status.
    MDStapleOthers on|off on sX
    Enable stapling for certificates not managed by mod_md.
    MDStapling on|off off sX
    Enable stapling for all or a particular MDomain.
    MDStaplingKeepResponse duration 7d sX
    Controls when old responses should be removed.
    MDStaplingRenewWindow duration 33% sX
    Control when the stapling responses will be renewed.
    MDStoreDir path md sX
    Path on the local file system to store the Managed Domains data.
    MDStoreLocks on|off|duration off sX
    Configure locking of store for updates
    MDWarnWindow duration 10% sX
    Define the time window when you want to be warned about an expiring certificate.
    MemcacheConnTTL num[units] 15s svE
    Keepalive time for idle connections
    MergeSlashes ON|OFF ON svC
    Controls whether the server merges consecutive slashes in URLs.
    MergeTrailers [on|off] off svC
    Determines whether trailers are merged into headers
    MetaDir directory .web svdhE
    CERN ¸ÞŸÁ¤º¸¸¦ ãÀ» µð·ºÅ丮 À̸§
    MetaFiles on|off off svdhE
    CERN ¸ÞŸÆÄÀÏÀ» ó¸®ÇÑ´Ù
    MetaSuffix suffix .meta svdhE
    CERN ¸ÞŸÁ¤º¸¸¦ ÀúÀåÇÏ´Â ÆÄÀÏÀÇ Á¢¹Ì»ç
    MimeMagicDecompression On|Off Off svE
    Enable decompression of compressed files for MIME type detection
    MimeMagicFile file-pathsvE
    Enable MIME-type determination based on file contents +
    MergeTrailers [on|off] off svC
    Determines whether trailers are merged into headers
    MetaDir directory .web svdhE
    CERN ¸ÞŸÁ¤º¸¸¦ ãÀ» µð·ºÅ丮 À̸§
    MetaFiles on|off off svdhE
    CERN ¸ÞŸÆÄÀÏÀ» ó¸®ÇÑ´Ù
    MetaSuffix suffix .meta svdhE
    CERN ¸ÞŸÁ¤º¸¸¦ ÀúÀåÇÏ´Â ÆÄÀÏÀÇ Á¢¹Ì»ç
    MimeMagicDecompression On|Off Off svE
    Enable decompression of compressed files for MIME type detection
    MimeMagicFile file-pathsvE
    Enable MIME-type determination based on file contents using the specified magic file
    MimeOptions option [option] ...svdhB
    Configures mod_mime behavior
    MinSpareServers number 5 sM
    Minimum number of idle child server processes
    MinSpareThreads numbersM
    Minimum number of idle threads available to handle request +
    MimeOptions option [option] ...svdhB
    Configures mod_mime behavior
    MinSpareServers number 5 sM
    Minimum number of idle child server processes
    MinSpareThreads numbersM
    Minimum number of idle threads available to handle request spikes
    MMapFile file-path [file-path] ...sX
    ½ÃÀ۽à ¿©·¯ ÆÄÀÏÀ» ¸Þ¸ð¸®¿¡ ´ëÀÀÇÑ´Ù
    ModemStandard V.21|V.26bis|V.32|V.34|V.92dX
    Modem standard to simulate
    ModMimeUsePathInfo On|Off Off dB
    Tells mod_mime to treat path_info +
    MMapFile file-path [file-path] ...sX
    ½ÃÀ۽à ¿©·¯ ÆÄÀÏÀ» ¸Þ¸ð¸®¿¡ ´ëÀÀÇÑ´Ù
    ModemStandard V.21|V.26bis|V.32|V.34|V.92dX
    Modem standard to simulate
    ModMimeUsePathInfo On|Off Off dB
    Tells mod_mime to treat path_info components as part of the filename
    MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers -[Handlers|Filters] NegotiatedOnly svdhB
    The types of files that will be included when searching for +
    MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers +[Handlers|Filters] NegotiatedOnly svdhB
    The types of files that will be included when searching for a matching file with MultiViews
    Mutex mechanism [default|mutex-name] ... [OmitPID] default sC
    Configures mutex mechanism and lock file directory for all +
    Mutex mechanism [default|mutex-name] ... [OmitPID] default sC
    Configures mutex mechanism and lock file directory for all or specified mutexes
    NameVirtualHost addr[:port]sC
    DEPRECATED: Designates an IP address for name-virtual +
    NameVirtualHost addr[:port]sC
    DEPRECATED: Designates an IP address for name-virtual hosting
    NoProxy host [host] ...svE
    Hosts, domains, or networks that will be connected to +
    NoProxy host [host] ...svE
    Hosts, domains, or networks that will be connected to directly
    NWSSLTrustedCerts filename [filename] ...sB
    List of additional client certificates
    NWSSLUpgradeable [IP-address:]portnumbersB
    Allows a connection to be upgraded to an SSL connection upon request
    Options - [+|-]option [[+|-]option] ... FollowSymlinks svdhC
    Configures what features are available in a particular +
    NWSSLTrustedCerts filename [filename] ...sB
    List of additional client certificates
    NWSSLUpgradeable [IP-address:]portnumbersB
    Allows a connection to be upgraded to an SSL connection upon request
    Options + [+|-]option [[+|-]option] ... FollowSymlinks svdhC
    Configures what features are available in a particular directory
    Order ordering Deny,Allow dhE
    Controls the default access state and the order in which +
    Order ordering Deny,Allow dhD
    Controls the default access state and the order in which Allow and Deny are evaluated.
    OutputSed sed-commanddhX
    Sed command for filtering response content
    PassEnv env-variable [env-variable] -...svdhB
    ½©¿¡¼­ ȯ°æº¯¼ö¸¦ °¡Á®¿Â´Ù
    PidFile filename httpd.pid sM
    File where the server records the process ID +
    OutputSed sed-commanddhX
    Sed command for filtering response content
    PassEnv env-variable [env-variable] +...svdhB
    ½©¿¡¼­ ȯ°æº¯¼ö¸¦ °¡Á®¿Â´Ù
    PidFile filename httpd.pid sM
    File where the server records the process ID of the daemon
    PolicyConditional ignore|log|enforcesvdE
    Enable the conditional request policy.
    PolicyConditionalURL urlsvdE
    URL describing the conditional request policy.
    PolicyEnvironment variable log-value ignore-valuesvdE
    Override policies based on an environment variable.
    PolicyFilter on|offsvdE
    Enable or disable policies for the given URL space.
    PolicyKeepalive ignore|log|enforcesvdE
    Enable the keepalive policy.
    PolicyKeepaliveURL urlsvdE
    URL describing the keepalive policy.
    PolicyLength ignore|log|enforcesvdE
    Enable the content length policy.
    PolicyLengthURL urlsvdE
    URL describing the content length policy.
    PolicyMaxage ignore|log|enforce agesvdE
    Enable the caching minimum max-age policy.
    PolicyMaxageURL urlsvdE
    URL describing the caching minimum freshness lifetime policy.
    PolicyNocache ignore|log|enforcesvdE
    Enable the caching no-cache policy.
    PolicyNocacheURL urlsvdE
    URL describing the caching no-cache policy.
    PolicyType ignore|log|enforce type [ type [ ... ]]svdE
    Enable the content type policy.
    PolicyTypeURL urlsvdE
    URL describing the content type policy.
    PolicyValidation ignore|log|enforcesvdE
    Enable the validation policy.
    PolicyValidationURL urlsvdE
    URL describing the content type policy.
    PolicyVary ignore|log|enforce header [ header [ ... ]]svdE
    Enable the Vary policy.
    PolicyVaryURL urlsvdE
    URL describing the content type policy.
    PolicyVersion ignore|log|enforce HTTP/0.9|HTTP/1.0|HTTP/1.1svdE
    Enable the version policy.
    PolicyVersionURL urlsvdE
    URL describing the minimum request HTTP version policy.
    PollersPerChild number 0 sM
    Number of poll threads per child process
    PrivilegesMode FAST|SECURE|SELECTIVE FAST svdX
    Trade off processing speed and efficiency vs security against +
    PolicyConditional ignore|log|enforcesvdE
    Enable the conditional request policy.
    PolicyConditionalURL urlsvdE
    URL describing the conditional request policy.
    PolicyEnvironment variable log-value ignore-valuesvdE
    Override policies based on an environment variable.
    PolicyFilter on|offsvdE
    Enable or disable policies for the given URL space.
    PolicyKeepalive ignore|log|enforcesvdE
    Enable the keepalive policy.
    PolicyKeepaliveURL urlsvdE
    URL describing the keepalive policy.
    PolicyLength ignore|log|enforcesvdE
    Enable the content length policy.
    PolicyLengthURL urlsvdE
    URL describing the content length policy.
    PolicyMaxage ignore|log|enforce agesvdE
    Enable the caching minimum max-age policy.
    PolicyMaxageURL urlsvdE
    URL describing the caching minimum freshness lifetime policy.
    PolicyNocache ignore|log|enforcesvdE
    Enable the caching no-cache policy.
    PolicyNocacheURL urlsvdE
    URL describing the caching no-cache policy.
    PolicyType ignore|log|enforce type [ type [ ... ]]svdE
    Enable the content type policy.
    PolicyTypeURL urlsvdE
    URL describing the content type policy.
    PolicyValidation ignore|log|enforcesvdE
    Enable the validation policy.
    PolicyValidationURL urlsvdE
    URL describing the content type policy.
    PolicyVary ignore|log|enforce header [ header [ ... ]]svdE
    Enable the Vary policy.
    PolicyVaryURL urlsvdE
    URL describing the content type policy.
    PolicyVersion ignore|log|enforce HTTP/0.9|HTTP/1.0|HTTP/1.1svdE
    Enable the version policy.
    PolicyVersionURL urlsvdE
    URL describing the minimum request HTTP version policy.
    PollersPerChild number 0 sM
    Number of poll threads per child process
    PrivilegesMode FAST|SECURE|SELECTIVE FAST svdD
    Trade off processing speed and efficiency vs security against malicious privileges-aware code.
    Protocol protocolsvC
    Protocol for a listening socket
    ProtocolEcho On|OffsvX
    echo ¼­¹ö¸¦ Ű°í ²ö´Ù
    Protocols protocol ... http/1.1 svC
    Protocols available for a server/virtual host
    ProtocolsHonorOrder On|Off On svC
    Determines if order of Protocols determines precedence during negotiation
    <Proxy wildcard-url> ...</Proxy>svE
    Container for directives applied to proxied resources
    Proxy100Continue Off|On On svdE
    Forward 100-continue expectation to the origin server
    ProxyAddHeaders Off|On On svdE
    Add proxy information in X-Forwarded-* headers
    ProxyAsyncDelay time[s]svdE
    Time to poll synchronously before handing a connection to the +
    Protocol protocolsvC
    Protocol for a listening socket
    ProtocolEcho On|OffsvX
    echo ¼­¹ö¸¦ Ű°í ²ö´Ù
    Protocols protocol ... http/1.1 svC
    Protocols available for a server/virtual host
    ProtocolsHonorOrder On|Off On svC
    Determines if order of Protocols determines precedence during negotiation
    <Proxy wildcard-url> ...</Proxy>svE
    Container for directives applied to proxied resources
    Proxy100Continue Off|On On svdE
    Forward 100-continue expectation to the origin server
    ProxyAddHeaders Off|On On svdE
    Add proxy information in X-Forwarded-* headers
    ProxyAsyncDelay time[s]svdE
    Time to poll synchronously before handing a connection to the MPM for asynchronous processing
    ProxyAsyncIdleTimeout time[s]svdE
    Inactivity timeout for asynchronous proxy connections
    ProxyBadHeader IsError|Ignore|StartBody IsError svE
    Determines how to handle bad header lines in a +
    ProxyAsyncIdleTimeout time[s]svdE
    Inactivity timeout for asynchronous proxy connections
    ProxyBadHeader IsError|Ignore|StartBody IsError svE
    Determines how to handle bad header lines in a response
    ProxyBeaconAddress address:portsvE
    Address of the reverse proxy to which a backend sends its +
    ProxyBeaconAddress address:portsvE
    Address of the reverse proxy to which a backend sends its announcements
    ProxyBeaconAdvertise urlsvE
    The routable URL a backend announces to the reverse proxy
    ProxyBeaconBalancer namesvE
    Name of the balancer that announced backends are added to
    ProxyBeaconInterval interval 5 svE
    How often a backend publishes its announcement
    ProxyBeaconListen [address][:port]svE
    Address on which the reverse proxy receives backend +
    ProxyBeaconAdvertise urlsvE
    The routable URL a backend announces to the reverse proxy
    ProxyBeaconBalancer namesvE
    Name of the balancer that announced backends are added to
    ProxyBeaconInterval interval 5 svE
    How often a backend publishes its announcement
    ProxyBeaconListen [address][:port]svE
    Address on which the reverse proxy receives backend beacons
    ProxyBeaconMaxSkew intervalsvE
    Maximum allowed age of a signed announcement
    ProxyBeaconSecret secretsvE
    Pre-shared secret used to authenticate announcements
    ProxyBeaconTimeout interval 0 svE
    How long the proxy waits, without an announcement, before a backend +
    ProxyBeaconMaxSkew intervalsvE
    Maximum allowed age of a signed announcement
    ProxyBeaconSecret secretsvE
    Pre-shared secret used to authenticate announcements
    ProxyBeaconTimeout interval 0 svE
    How long the proxy waits, without an announcement, before a backend is taken out of rotation
    ProxyBlock *|hostname|partial-hostname [hostname|partial-hostname]...svE
    Disallow proxy requests to certain hosts
    ProxyDomain DomainsvE
    Default domain name for proxied requests
    ProxyErrorOverride Off|On [code ...] Off svdE
    Override error pages for proxied content
    ProxyExpressDBMFile pathnamesvE
    Pathname to DBM file.
    ProxyExpressDBMType type default svE
    DBM type of file.
    ProxyExpressEnable on|off off svE
    Enable the module functionality.
    ProxyFCGIBackendType FPM|GENERIC FPM svdhE
    Specify the type of backend FastCGI application
    ProxyFCGISetEnvIf conditional-expression +
    ProxyBlock *|hostname|partial-hostname [hostname|partial-hostname]...svE
    Disallow proxy requests to certain hosts
    ProxyDomain DomainsvE
    Default domain name for proxied requests
    ProxyErrorOverride Off|On [code ...] Off svdE
    Override error pages for proxied content
    ProxyExpressDBMFile pathnamesvE
    Pathname to DBM file.
    ProxyExpressDBMType type default svE
    DBM type of file.
    ProxyExpressEnable on|off off svE
    Enable the module functionality.
    ProxyFCGIBackendType FPM|GENERIC FPM svdhE
    Specify the type of backend FastCGI application
    ProxyFCGISetEnvIf conditional-expression [!]environment-variable-name - [value-expression]svdhE
    Allow variables sent to FastCGI servers to be fixed up
    ProxyFtpDirCharset character_set ISO-8859-1 svdE
    Define the character set for proxied FTP listings
    ProxyFtpEscapeWildcards on|off on svdE
    Whether wildcards in requested filenames are escaped when sent to the FTP server
    ProxyFtpListOnWildcard on|off on svdE
    Whether wildcards in requested filenames trigger a file listing
    ProxyHCExpr name {ap_expr expression}svE
    Creates a named condition expression to use to determine health of the backend based on its response
    ProxyHCTemplate name parameter=setting [...]svE
    Creates a named template for setting various health check parameters
    ProxyHCTPsize size 16 sE
    Sets the total server-wide size of the threadpool used for the health check workers
    ProxyHTMLBufSize bytes 8192 svdB
    Sets the buffer size increment for buffering inline scripts and + [value-expression]svdhE
    Allow variables sent to FastCGI servers to be fixed up
    ProxyFtpDirCharset character_set ISO-8859-1 svdE
    Define the character set for proxied FTP listings
    ProxyFtpEscapeWildcards on|off on svdE
    Whether wildcards in requested filenames are escaped when sent to the FTP server
    ProxyFtpListOnWildcard on|off on svdE
    Whether wildcards in requested filenames trigger a file listing
    ProxyHCExpr name {ap_expr expression}svE
    Creates a named condition expression to use to determine health of the backend based on its response
    ProxyHCTemplate name parameter=setting [...]svE
    Creates a named template for setting various health check parameters
    ProxyHCTPsize size 16 sE
    Sets the total server-wide size of the threadpool used for the health check workers
    ProxyHTMLBufSize bytes 8192 svdB
    Sets the buffer size increment for buffering inline scripts and stylesheets.
    ProxyHTMLCharsetOut Charset | * UTF-8 svdB
    Specify a charset for mod_proxy_html output.
    ProxyHTMLDocType HTML|XHTML [Legacy]
    OR +
    ProxyHTMLCharsetOut Charset | * UTF-8 svdB
    Specify a charset for mod_proxy_html output.
    ProxyHTMLDocType HTML|XHTML [Legacy]
    OR
    ProxyHTMLDocType fpi [SGML|XML]
    OR
    ProxyHTMLDocType html5
    OR -
    ProxyHTMLDocType auto
    auto (2.5/trunk ver +svdB
    Sets an HTML or XHTML document type declaration.
    ProxyHTMLEnable On|Off Off svdB
    Turns the proxy_html filter on or off.
    ProxyHTMLEvents attribute [attribute ...]svdB
    Specify attributes to treat as scripting events.
    ProxyHTMLExtended On|Off Off svdB
    Determines whether to fix links in inline scripts, stylesheets, +
    ProxyHTMLDocType auto
    auto (2.5/trunk ver +svdB
    Sets an HTML or XHTML document type declaration.
    ProxyHTMLEnable On|Off Off svdB
    Turns the proxy_html filter on or off.
    ProxyHTMLEvents attribute [attribute ...]svdB
    Specify attributes to treat as scripting events.
    ProxyHTMLExtended On|Off Off svdB
    Determines whether to fix links in inline scripts, stylesheets, and scripting events.
    ProxyHTMLFixups [lowercase] [dospath] [reset] none svdB
    Fixes for simple HTML errors.
    ProxyHTMLInterp On|Off Off svdB
    Enables per-request interpolation of +
    ProxyHTMLFixups [lowercase] [dospath] [reset] none svdB
    Fixes for simple HTML errors.
    ProxyHTMLInterp On|Off Off svdB
    Enables per-request interpolation of ProxyHTMLURLMap rules.
    ProxyHTMLLinks element attribute [attribute2 ...]svdB
    Specify HTML elements that have URL attributes to be rewritten.
    ProxyHTMLMeta On|Off Off svdB
    Turns on or off extra pre-parsing of metadata in HTML +
    ProxyHTMLLinks element attribute [attribute2 ...]svdB
    Specify HTML elements that have URL attributes to be rewritten.
    ProxyHTMLMeta On|Off Off svdB
    Turns on or off extra pre-parsing of metadata in HTML <head> sections.
    ProxyHTMLStripComments On|Off Off svdB
    Determines whether to strip HTML comments.
    ProxyHTMLURLMap from-pattern to-pattern [flags] [cond]svdB
    Defines a rule to rewrite HTML links
    ProxyIOBufferSize bytes 8192 svE
    Determine size of internal data throughput buffer
    <ProxyMatch regex> ...</ProxyMatch>svE
    Container for directives applied to regular-expression-matched +
    ProxyHTMLStripComments On|Off Off svdB
    Determines whether to strip HTML comments.
    ProxyHTMLURLMap from-pattern to-pattern [flags] [cond]svdB
    Defines a rule to rewrite HTML links
    ProxyIOBufferSize bytes 8192 svE
    Determine size of internal data throughput buffer
    <ProxyMatch regex> ...</ProxyMatch>svE
    Container for directives applied to regular-expression-matched proxied resources
    ProxyMaxForwards number -1 svE
    Maximum number of proxies that a request can be forwarded +
    ProxyMaxForwards number -1 svE
    Maximum number of proxies that a request can be forwarded through
    ProxyPass [path] !|url [key=value - [key=value ...]] [nocanon] [interpolate] [noquery]svdE
    Maps remote servers into the local server URL-space
    ProxyPassInherit On|Off On svE
    Inherit ProxyPass directives defined from the main server
    ProxyPassInterpolateEnv On|Off Off svdE
    Enable Environment Variable interpolation in Reverse Proxy configurations
    ProxyPassMatch [regex] !|url [key=value - [key=value ...]]svdE
    Maps remote servers into the local server URL-space using regular expressions
    ProxyPassReverse [path] url -[interpolate]svdE
    Adjusts the URL in HTTP response headers sent from a reverse +
    ProxyPass [path] !|url [key=value + [key=value ...]] [nocanon] [interpolate] [noquery]svdE
    Maps remote servers into the local server URL-space
    ProxyPassInherit On|Off On svE
    Inherit ProxyPass directives defined from the main server
    ProxyPassInterpolateEnv On|Off Off svdE
    Enable Environment Variable interpolation in Reverse Proxy configurations
    ProxyPassMatch [regex] !|url [key=value + [key=value ...]]svdE
    Maps remote servers into the local server URL-space using regular expressions
    ProxyPassReverse [path] url +[interpolate]svdE
    Adjusts the URL in HTTP response headers sent from a reverse proxied server
    ProxyPassReverseCookieDomain internal-domain -public-domain [interpolate]svdE
    Adjusts the Domain string in Set-Cookie headers from a reverse- +
    ProxyPassReverseCookieDomain internal-domain +public-domain [interpolate]svdE
    Adjusts the Domain string in Set-Cookie headers from a reverse- proxied server
    ProxyPassReverseCookiePath internal-path -public-path [interpolate]svdE
    Adjusts the Path string in Set-Cookie headers from a reverse- +
    ProxyPassReverseCookiePath internal-path +public-path [interpolate]svdE
    Adjusts the Path string in Set-Cookie headers from a reverse- proxied server
    ProxyPreserveHost On|Off Off svdE
    Use incoming Host HTTP request header for proxy +
    ProxyPreserveHost On|Off Off svdE
    Use incoming Host HTTP request header for proxy request
    ProxyReceiveBufferSize bytes 0 svE
    Network buffer size for proxied HTTP and FTP +
    ProxyReceiveBufferSize bytes 0 svE
    Network buffer size for proxied HTTP and FTP connections
    ProxyRemote match remote-server [username:password]svE
    Remote proxy used to handle certain requests
    ProxyRemoteMatch regex remote-server [username:password]svE
    Remote proxy used to handle requests matched by regular +
    ProxyRemote match remote-server [username:password]svE
    Remote proxy used to handle certain requests
    ProxyRemoteMatch regex remote-server [username:password]svE
    Remote proxy used to handle requests matched by regular expressions
    ProxyRequests On|Off Off svE
    Enables forward (standard) proxy requests
    ProxySCGIInternalRedirect On|Off|Headername On svdE
    Enable or disable internal redirect responses from the +
    ProxyRequests On|Off Off svE
    Enables forward (standard) proxy requests
    ProxySCGIInternalRedirect On|Off|Headername On svdE
    Enable or disable internal redirect responses from the backend
    ProxySCGISendfile On|Off|Headername Off svdE
    Enable evaluation of X-Sendfile pseudo response +
    ProxySCGISendfile On|Off|Headername Off svdE
    Enable evaluation of X-Sendfile pseudo response header
    ProxySet url key=value [key=value ...]svdE
    Set various Proxy balancer or member parameters
    ProxySourceAddress addresssvE
    Set local IP address for outgoing proxy connections
    ProxyStatus Off|On|Full Off svE
    Show Proxy LoadBalancer status in mod_status
    ProxyTimeout time-interval[s]svE
    Network timeout for proxied requests
    ProxyVia On|Off|Full|Block Off svE
    Information provided in the Via HTTP response +
    ProxySet url key=value [key=value ...]svdE
    Set various Proxy balancer or member parameters
    ProxySourceAddress addresssvE
    Set local IP address for outgoing proxy connections
    ProxyStatus Off|On|Full Off svE
    Show Proxy LoadBalancer status in mod_status
    ProxyTimeout time-interval[s]svE
    Network timeout for proxied requests
    ProxyVia On|Off|Full|Block Off svE
    Information provided in the Via HTTP response header for proxied requests
    ProxyWebsocketAsync ON|OFFsvE
    Instructs this module to try to create an asynchronous tunnel
    ProxyWebsocketAsyncDelay num[ms] 0 svE
    Sets the amount of time the tunnel waits synchronously for data
    ProxyWebsocketFallbackToProxyHttp On|Off On svE
    Instructs this module to let mod_proxy_http handle the request
    ProxyWebsocketIdleTimeout num[ms] 0 svE
    Sets the maximum amount of time to wait for data on the websockets tunnel
    QualifyRedirectURL On|Off Off svdC
    Controls whether the REDIRECT_URL environment variable is +
    ProxyWebsocketAsync ON|OFFsvD
    Instructs this module to try to create an asynchronous tunnel
    ProxyWebsocketAsyncDelay num[ms] 0 svD
    Sets the amount of time the tunnel waits synchronously for data
    ProxyWebsocketFallbackToProxyHttp On|Off On svD
    Instructs this module to let mod_proxy_http handle the request
    ProxyWebsocketIdleTimeout num[ms] 0 svD
    Sets the maximum amount of time to wait for data on the websockets tunnel
    QualifyRedirectURL On|Off Off svdC
    Controls whether the REDIRECT_URL environment variable is fully qualified
    ReadBufferSize bytes 8192 svdC
    Size of the buffers used to read data
    ReadmeName filenamesvdhB
    ÆÄÀϸñ·Ï ¸¶Áö¸·¿¡ »ðÀÔÇÒ ÆÄÀÏÀÇ À̸§
    ReceiveBufferSize bytes 0 sM
    TCP receive buffer size
    Redirect [status] URL-path -URLsvdhB
    Ŭ¶óÀÌ¾ðÆ®°¡ ´Ù¸¥ URL¿¡ Á¢¼ÓÇϵµ·Ï ¿äûÇÏ´Â ¿ÜºÎ +
    ReadBufferSize bytes 8192 svdC
    Size of the buffers used to read data
    ReadmeName filenamesvdhB
    ÆÄÀϸñ·Ï ¸¶Áö¸·¿¡ »ðÀÔÇÒ ÆÄÀÏÀÇ À̸§
    ReceiveBufferSize bytes 0 sM
    TCP receive buffer size
    Redirect [status] URL-path +URLsvdhB
    Ŭ¶óÀÌ¾ðÆ®°¡ ´Ù¸¥ URL¿¡ Á¢¼ÓÇϵµ·Ï ¿äûÇÏ´Â ¿ÜºÎ ¸®´ÙÀÌ·º¼ÇÀ» º¸³½´Ù
    RedirectMatch [status] regex -URLsvdhB
    ÇöÀç URLÀÌ Á¤±ÔÇ¥Çö½Ä¿¡ ÇØ´çÇÏ¸é ¿ÜºÎ ¸®´ÙÀÌ·º¼ÇÀ» +
    RedirectMatch [status] regex +URLsvdhB
    ÇöÀç URLÀÌ Á¤±ÔÇ¥Çö½Ä¿¡ ÇØ´çÇÏ¸é ¿ÜºÎ ¸®´ÙÀÌ·º¼ÇÀ» º¸³½´Ù
    RedirectPermanent URL-path URLsvdhB
    Ŭ¶óÀÌ¾ðÆ®°¡ ´Ù¸¥ URL¿¡ Á¢¼ÓÇϵµ·Ï ¿äûÇÏ´Â ¿ÜºÎ +
    RedirectPermanent URL-path URLsvdhB
    Ŭ¶óÀÌ¾ðÆ®°¡ ´Ù¸¥ URL¿¡ Á¢¼ÓÇϵµ·Ï ¿äûÇÏ´Â ¿ÜºÎ ¿µ±¸ ¸®´ÙÀÌ·º¼ÇÀ» º¸³½´Ù
    RedirectRelative On|Off Off svdB
    Allows relative redirect targets.
    RedirectTemp URL-path URLsvdhB
    Ŭ¶óÀÌ¾ðÆ®°¡ ´Ù¸¥ URL¿¡ Á¢¼ÓÇϵµ·Ï ¿äûÇÏ´Â ¿ÜºÎ +
    RedirectRelative On|Off Off svdB
    Allows relative redirect targets.
    RedirectTemp URL-path URLsvdhB
    Ŭ¶óÀÌ¾ðÆ®°¡ ´Ù¸¥ URL¿¡ Á¢¼ÓÇϵµ·Ï ¿äûÇÏ´Â ¿ÜºÎ Àӽà ¸®´ÙÀÌ·º¼ÇÀ» º¸³½´Ù
    RedisConnPoolTTL num[units] 15s svE
    TTL used for the connection pool with the Redis server(s)
    RedisTimeout num[units] 5s svE
    R/W timeout used for the connection with the Redis server(s)
    ReflectorHeader inputheader [outputheader]svdhB
    Reflect an input header to the output headers
    RegexDefaultOptions [none] [+|-]option [[+|-]option] ... DOTALL DOLLAR_ENDON +sC
    Allow to configure global/default options for regexes
    RegisterHttpMethod method [method [...]]sC
    Register non-standard HTTP methods
    RemoteIPHeader header-fieldsvB
    Declare the header field which should be parsed for useragent IP addresses
    RemoteIPInternalProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPInternalProxyList filenamesvB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPProxiesHeader HeaderFieldNamesvB
    Declare the header field which will record all intermediate IP addresses
    RemoteIPProxyProtocol On|OffsvB
    Enable or disable PROXY protocol handling
    RemoteIPProxyProtocolExceptions host|range [host|range] [host|range]svB
    Disable processing of PROXY header for certain hosts or networks
    RemoteIPTrustedProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoteIPTrustedProxyList filenamesvB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoveCharset extension [extension] -...vdhB
    Removes any character set associations for a set of file +
    RedisConnPoolTTL num[units] 15s svE
    TTL used for the connection pool with the Redis server(s)
    RedisTimeout num[units] 5s svE
    R/W timeout used for the connection with the Redis server(s)
    ReflectorHeader inputheader [outputheader]svdhB
    Reflect an input header to the output headers
    RegexDefaultOptions [none] [+|-]option [[+|-]option] ... DOTALL DOLLAR_ENDON +sC
    Allow to configure global/default options for regexes
    RegisterHttpMethod method [method [...]]sC
    Register non-standard HTTP methods
    RemoteIPHeader header-fieldsvB
    Declare the header field which should be parsed for useragent IP addresses
    RemoteIPInternalProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPInternalProxyList filenamesvB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPProxiesHeader HeaderFieldNamesvB
    Declare the header field which will record all intermediate IP addresses
    RemoteIPProxyProtocol On|OffsvB
    Enable or disable PROXY protocol handling
    RemoteIPProxyProtocolExceptions host|range [host|range] [host|range]svB
    Disable processing of PROXY header for certain hosts or networks
    RemoteIPTrustedProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoteIPTrustedProxyList filenamesvB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoveCharset extension [extension] +...vdhB
    Removes any character set associations for a set of file extensions
    RemoveEncoding extension [extension] -...vdhB
    Removes any content encoding associations for a set of file +
    RemoveEncoding extension [extension] +...vdhB
    Removes any content encoding associations for a set of file extensions
    RemoveHandler extension [extension] -...vdhB
    Removes any handler associations for a set of file +
    RemoveHandler extension [extension] +...vdhB
    Removes any handler associations for a set of file extensions
    RemoveInputFilter extension [extension] -...vdhB
    Removes any input filter associations for a set of file +
    RemoveInputFilter extension [extension] +...vdhB
    Removes any input filter associations for a set of file extensions
    RemoveLanguage extension [extension] -...vdhB
    Removes any language associations for a set of file +
    RemoveLanguage extension [extension] +...vdhB
    Removes any language associations for a set of file extensions
    RemoveOutputFilter extension [extension] -...vdhB
    Removes any output filter associations for a set of file +
    RemoveOutputFilter extension [extension] +...vdhB
    Removes any output filter associations for a set of file extensions
    RemoveType extension [extension] -...vdhB
    Removes any content type associations for a set of file +
    RemoveType extension [extension] +...vdhB
    Removes any content type associations for a set of file extensions
    RequestHeader set|append|add|unset header -[value] [early|env=[!]variable]svdhE
    HTTP ¿äû Çì´õ¸¦ ±¸¼ºÇÑ´Ù
    RequestReadTimeout +
    RequestHeader set|append|add|unset header +[value] [early|env=[!]variable]svdhE
    HTTP ¿äû Çì´õ¸¦ ±¸¼ºÇÑ´Ù
    RequestReadTimeout [handshake=timeout[-maxtimeout][,MinRate=rate] [header=timeout[-maxtimeout][,MinRate=rate] [body=timeout[-maxtimeout][,MinRate=rate] - handshake=0 header= +svE
    Set timeout values for completing the TLS handshake, receiving + handshake=0 header= +svE
    Set timeout values for completing the TLS handshake, receiving the request headers and/or body from client.
    Require [not] entity-name - [entity-name] ...dhB
    Tests whether an authenticated user is authorized by +
    Require [not] entity-name + [entity-name] ...dhB
    Tests whether an authenticated user is authorized by an authorization provider.
    <RequireAll> ... </RequireAll>dhB
    Enclose a group of authorization directives of which none +
    <RequireAll> ... </RequireAll>dhB
    Enclose a group of authorization directives of which none must fail and at least one must succeed for the enclosing directive to succeed.
    <RequireAny> ... </RequireAny>dhB
    Enclose a group of authorization directives of which one +
    <RequireAny> ... </RequireAny>dhB
    Enclose a group of authorization directives of which one must succeed for the enclosing directive to succeed.
    <RequireNone> ... </RequireNone>dhB
    Enclose a group of authorization directives of which none +
    <RequireNone> ... </RequireNone>dhB
    Enclose a group of authorization directives of which none must succeed for the enclosing directive to not fail.
    RewriteBase URL-pathdhE
    Sets the base URL for per-directory rewrites
    RewriteCond - TestString [!]CondPattern [flags]svdhE
    Defines a condition under which rewriting will take place +
    RewriteBase URL-pathdhE
    Sets the base URL for per-directory rewrites
    RewriteCond + TestString [!]CondPattern [flags]svdhE
    Defines a condition under which rewriting will take place
    RewriteEngine on|off off svdhE
    Enables or disables runtime rewriting engine
    RewriteMap MapName MapType:MapSource +
    RewriteEngine on|off off svdhE
    Enables or disables runtime rewriting engine
    RewriteMap MapName MapType:MapSource [MapTypeOptions] -svE
    Defines a mapping function for key-lookup
    RewriteOptions OptionssvdhE
    Sets some special options for the rewrite engine
    RewriteRule - [!]Pattern Substitution [flags]svdhE
    Defines rules for the rewriting engine
    RLimitCPU seconds|max [seconds|max]svdhC
    Limits the CPU consumption of processes launched +svE
    Defines a mapping function for key-lookup
    RewriteOptions OptionssvdhE
    Sets some special options for the rewrite engine
    RewriteRule + [!]Pattern Substitution [flags]svdhE
    Defines rules for the rewriting engine
    RLimitCPU seconds|max [seconds|max]svdhC
    Limits the CPU consumption of processes launched by Apache httpd children
    RLimitMEM bytes|max [bytes|max]svdhC
    Limits the memory consumption of processes launched +
    RLimitMEM bytes|max [bytes|max]svdhC
    Limits the memory consumption of processes launched by Apache httpd children
    RLimitNPROC number|max [number|max]svdhC
    Limits the number of processes that can be launched by +
    RLimitNPROC number|max [number|max]svdhC
    Limits the number of processes that can be launched by processes launched by Apache httpd children
    Satisfy Any|All All dhE
    Interaction between host-level access control and +
    Satisfy Any|All All dhD
    Interaction between host-level access control and user authentication
    ScoreBoardFile file-path apache_runtime_stat +sM
    Location of the file used to store coordination data for +
    ScoreBoardFile file-path apache_runtime_stat +sM
    Location of the file used to store coordination data for the child processes
    Script method cgi-scriptsvdB
    ƯÁ¤ ¿äû¸Þ¼­µå¿¡ ´ëÇØ CGI ½ºÅ©¸³Æ®¸¦ +
    Script method cgi-scriptsvdB
    ƯÁ¤ ¿äû¸Þ¼­µå¿¡ ´ëÇØ CGI ½ºÅ©¸³Æ®¸¦ »ç¿ëÇÑ´Ù.
    ScriptAlias URL-path -file-path|directory-pathsvdB
    URLÀ» ƯÁ¤ ÆÄÀϽýºÅÛ Àå¼Ò·Î ´ëÀÀÇÏ°í ´ë»óÀÌ CGI +
    ScriptAlias URL-path +file-path|directory-pathsvdB
    URLÀ» ƯÁ¤ ÆÄÀϽýºÅÛ Àå¼Ò·Î ´ëÀÀÇÏ°í ´ë»óÀÌ CGI ½ºÅ©¸³Æ®¶ó°í ¾Ë¸°´Ù
    ScriptAliasMatch regex -file-path|directory-pathsvB
    Á¤±ÔÇ¥Çö½ÄÀ» »ç¿ëÇÏ¿© URLÀ» ƯÁ¤ ÆÄÀϽýºÅÛ Àå¼Ò·Î +
    ScriptAliasMatch regex +file-path|directory-pathsvB
    Á¤±ÔÇ¥Çö½ÄÀ» »ç¿ëÇÏ¿© URLÀ» ƯÁ¤ ÆÄÀϽýºÅÛ Àå¼Ò·Î ´ëÀÀÇÏ°í ´ë»óÀÌ CGI ½ºÅ©¸³Æ®¶ó°í ¾Ë¸°´Ù
    ScriptInterpreterSource Registry|Registry-Strict|Script Script svdhC
    Technique for locating the interpreter for CGI +
    ScriptInterpreterSource Registry|Registry-Strict|Script Script svdhC
    Technique for locating the interpreter for CGI scripts
    ScriptLog file-pathsvB
    CGI ½ºÅ©¸³Æ® ¿À·ù·Î±×ÆÄÀÏÀÇ À§Ä¡
    ScriptLogBuffer bytes 1024 svB
    ½ºÅ©¸³Æ® ·Î±×¿¡ ±â·ÏÇÒ PUT ȤÀº POST ¿äûÀÇ ÃÖ´ë·®
    ScriptLogLength bytes 10385760 svB
    CGI ½ºÅ©¸³Æ® ·Î±×ÆÄÀÏÀÇ Å©±â Á¦ÇÑ
    ScriptSock file-path logs/cgisock sB
    cgi µ¥¸ó°ú Åë½ÅÀ» À§ÇØ »ç¿ëÇÒ ¼ÒÄÏÀÇ À̸§
    SecureListen [IP-address:]portnumber -Certificate-Name [MUTUAL]sB
    Enables SSL encryption for the specified port
    SeeRequestTail On|Off Off sC
    Determine if mod_status displays the first 63 characters +
    ScriptLog file-pathsvB
    CGI ½ºÅ©¸³Æ® ¿À·ù·Î±×ÆÄÀÏÀÇ À§Ä¡
    ScriptLogBuffer bytes 1024 svB
    ½ºÅ©¸³Æ® ·Î±×¿¡ ±â·ÏÇÒ PUT ȤÀº POST ¿äûÀÇ ÃÖ´ë·®
    ScriptLogLength bytes 10385760 svB
    CGI ½ºÅ©¸³Æ® ·Î±×ÆÄÀÏÀÇ Å©±â Á¦ÇÑ
    ScriptSock file-path logs/cgisock sB
    cgi µ¥¸ó°ú Åë½ÅÀ» À§ÇØ »ç¿ëÇÒ ¼ÒÄÏÀÇ À̸§
    SecureListen [IP-address:]portnumber +Certificate-Name [MUTUAL]sB
    Enables SSL encryption for the specified port
    SeeRequestTail On|Off Off sC
    Determine if mod_status displays the first 63 characters of a request or the last 63, assuming the request itself is greater than 63 chars.
    SendBufferSize bytes 0 sM
    TCP buffer size
    ServerAdmin email-address|URLsvC
    Email address that the server includes in error +
    SendBufferSize bytes 0 sM
    TCP buffer size
    ServerAdmin email-address|URLsvC
    Email address that the server includes in error messages sent to the client
    ServerAlias hostname [hostname] ...vC
    Alternate names for a host used when matching requests +
    ServerAlias hostname [hostname] ...vC
    Alternate names for a host used when matching requests to name-virtual hosts
    ServerLimit numbersM
    Upper limit on configurable number of processes
    ServerName [scheme://]domain-name|ip-address[:port]svC
    Hostname and port that the server uses to identify +
    ServerLimit numbersM
    Upper limit on configurable number of processes
    ServerName [scheme://]domain-name|ip-address[:port]svC
    Hostname and port that the server uses to identify itself
    ServerPath URL-pathvC
    Legacy URL pathname for a name-based virtual host that +
    ServerPath URL-pathvC
    Legacy URL pathname for a name-based virtual host that is accessed by an incompatible browser
    ServerRoot directory-path /usr/local/apache sC
    Base directory for the server installation
    ServerSignature On|Off|EMail Off svdhC
    Configures the footer on server-generated documents
    ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full Full sC
    Configures the Server HTTP response +
    ServerRoot directory-path /usr/local/apache sC
    Base directory for the server installation
    ServerSignature On|Off|EMail Off svdhC
    Configures the footer on server-generated documents
    ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full Full sC
    Configures the Server HTTP response header
    Session On|Off Off svdhE
    Enables a session for the current directory or location
    SessionCookieMaxAge On|Off On svdhE
    Control whether session cookies have Max-Age transmitted to the client
    SessionCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session
    SessionCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session
    SessionCookieRemove On|Off Off svdhE
    Control for whether session cookies should be removed from incoming HTTP headers
    SessionCryptoCipher name aes256 svdhX
    The crypto cipher to be used to encrypt the session
    SessionCryptoDriver name [param[=value]]sX
    The crypto driver to be used to encrypt the session
    SessionCryptoPassphrase secret [ secret ... ] svdhX
    The key used to encrypt the session
    SessionCryptoPassphraseFile filenamesvdX
    File containing keys used to encrypt the session
    SessionDBDCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session ID
    SessionDBDCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session ID
    SessionDBDCookieRemove On|Off On svdhE
    Control for whether session ID cookies should be removed from incoming HTTP headers
    SessionDBDDeleteLabel label deletesession svdhE
    The SQL query to use to remove sessions from the database
    SessionDBDInsertLabel label insertsession svdhE
    The SQL query to use to insert sessions into the database
    SessionDBDPerUser On|Off Off svdhE
    Enable a per user session
    SessionDBDSelectLabel label selectsession svdhE
    The SQL query to use to select sessions from the database
    SessionDBDUpdateLabel label updatesession svdhE
    The SQL query to use to update existing sessions in the database
    SessionEnv On|Off Off svdhE
    Control whether the contents of the session are written to the +
    Session On|Off Off svdhE
    Enables a session for the current directory or location
    SessionCookieMaxAge On|Off On svdhE
    Control whether session cookies have Max-Age transmitted to the client
    SessionCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session
    SessionCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session
    SessionCookieRemove On|Off Off svdhE
    Control for whether session cookies should be removed from incoming HTTP headers
    SessionCryptoCipher name aes256 svdhX
    The crypto cipher to be used to encrypt the session
    SessionCryptoDriver name [param[=value]]sX
    The crypto driver to be used to encrypt the session
    SessionCryptoPassphrase secret [ secret ... ] svdhX
    The key used to encrypt the session
    SessionCryptoPassphraseFile filenamesvdX
    File containing keys used to encrypt the session
    SessionDBDCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session ID
    SessionDBDCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session ID
    SessionDBDCookieRemove On|Off On svdhE
    Control for whether session ID cookies should be removed from incoming HTTP headers
    SessionDBDDeleteLabel label deletesession svdhE
    The SQL query to use to remove sessions from the database
    SessionDBDInsertLabel label insertsession svdhE
    The SQL query to use to insert sessions into the database
    SessionDBDPerUser On|Off Off svdhE
    Enable a per user session
    SessionDBDSelectLabel label selectsession svdhE
    The SQL query to use to select sessions from the database
    SessionDBDUpdateLabel label updatesession svdhE
    The SQL query to use to update existing sessions in the database
    SessionEnv On|Off Off svdhE
    Control whether the contents of the session are written to the HTTP_SESSION environment variable
    SessionExclude pathsvdhE
    Define URL prefixes for which a session is ignored
    SessionExpiryUpdateInterval interval 0 (always update) svdhE
    Define the number of seconds a session's expiry may change without +
    SessionExclude pathsvdhE
    Define URL prefixes for which a session is ignored
    SessionExpiryUpdateInterval interval 0 (always update) svdhE
    Define the number of seconds a session's expiry may change without the session being updated
    SessionHeader headersvdhE
    Import session updates from a given HTTP response header
    SessionInclude pathsvdhE
    Define URL prefixes for which a session is valid
    SessionMaxAge maxage 0 svdhE
    Define a maximum age in seconds for a session
    SetEnv env-variable valuesvdhB
    ȯ°æº¯¼ö¸¦ ¼³Á¤ÇÑ´Ù
    SetEnvIf attribute +
    SessionHeader headersvdhE
    Import session updates from a given HTTP response header
    SessionInclude pathsvdhE
    Define URL prefixes for which a session is valid
    SessionMaxAge maxage 0 svdhE
    Define a maximum age in seconds for a session
    SetEnv env-variable valuesvdhB
    ȯ°æº¯¼ö¸¦ ¼³Á¤ÇÑ´Ù
    SetEnvIf attribute regex [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    ¿äûÀÇ ¼ºÁú¿¡ µû¶ó ȯ°æº¯¼ö¸¦ ¼³Á¤ÇÑ´Ù
    svdhB
    Sets environment variables based on an ap_expr expression
    SetEnvIfNoCase attribute regex + [[!]env-variable[=value]] ...svdhB
    ¿äûÀÇ ¼ºÁú¿¡ µû¶ó ȯ°æº¯¼ö¸¦ ¼³Á¤ÇÑ´Ù
    svdhB
    Sets environment variables based on an ap_expr expression
    SetEnvIfNoCase attribute regex [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    ´ë¼Ò¹®ÀÚ¸¦ ±¸º°ÇÏÁö¾Ê°í ¿äûÀÇ ¼ºÁú¿¡ µû¶ó ȯ°æº¯¼ö¸¦ + [[!]env-variable[=value]] ...svdhB
    ´ë¼Ò¹®ÀÚ¸¦ ±¸º°ÇÏÁö¾Ê°í ¿äûÀÇ ¼ºÁú¿¡ µû¶ó ȯ°æº¯¼ö¸¦ ¼³Á¤ÇÑ´Ù
    SetHandler handler-name|none|expressionsvdhC
    Forces all matching files to be processed by a +
    SetHandler handler-name|none|expressionsvdhC
    Forces all matching files to be processed by a handler
    SetInputFilter filter[;filter...]svdhC
    Sets the filters that will process client requests and POST +
    SetInputFilter filter[;filter...]svdhC
    Sets the filters that will process client requests and POST input
    SetOutputFilter filter[;filter...]svdhC
    Sets the filters that will process responses from the +
    SetOutputFilter filter[;filter...]svdhC
    Sets the filters that will process responses from the server
    SSIEndTag tag "-->" svB
    String that ends an include element
    SSIErrorMsg message "[an error occurred +svdhB
    Error message displayed when there is an SSI +
    SSIEndTag tag "-->" svB
    String that ends an include element
    SSIErrorMsg message "[an error occurred +svdhB
    Error message displayed when there is an SSI error
    SSIETag on|off off dhB
    Controls whether ETags are generated by the server.
    SSILastModified on|off off dhB
    Controls whether Last-Modified headers are generated by the +
    SSIETag on|off off dhB
    Controls whether ETags are generated by the server.
    SSILastModified on|off off dhB
    Controls whether Last-Modified headers are generated by the server.
    SSILegacyExprParser on|off off dhB
    Enable compatibility mode for conditional expressions.
    SSIStartTag tag "<!--#" svB
    String that starts an include element
    SSITimeFormat formatstring "%A, %d-%b-%Y %H:%M +svdhB
    Configures the format in which date strings are +
    SSILegacyExprParser on|off off dhB
    Enable compatibility mode for conditional expressions.
    SSIStartTag tag "<!--#" svB
    String that starts an include element
    SSITimeFormat formatstring "%A, %d-%b-%Y %H:%M +svdhB
    Configures the format in which date strings are displayed
    SSIUndefinedEcho string "(none)" svdhB
    String displayed when an unset variable is echoed
    SSLCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates +
    SSIUndefinedEcho string "(none)" svdhB
    String displayed when an unset variable is echoed
    SSLCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates for Client Auth
    SSLCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for +
    SSLCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for Client Auth
    SSLCACertificateURI urisvE
    Server CA certificate store for Client Authentication
    SSLCADNRequestFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates for defining acceptable CA names
    SSLCADNRequestPath directory-pathsvE
    Directory of PEM-encoded CA Certificates for defining acceptable CA names
    SSLCARevocationCheck chain|leaf|none [flags ...] none svE
    Enable CRL-based revocation checking
    SSLCARevocationFile file-pathsvE
    File of concatenated PEM-encoded CA CRLs for +
    SSLCADNRequestURI urisvE
    certificate store of CA Certificates for defining +acceptable CA names
    SSLCARevocationCheck chain|leaf|none [flags ...] none svE
    Enable CRL-based revocation checking
    SSLCARevocationFile file-pathsvE
    File of concatenated PEM-encoded CA CRLs for Client Auth
    SSLCARevocationPath directory-pathsvE
    Directory of PEM-encoded CA CRLs for +
    SSLCARevocationPath directory-pathsvE
    Directory of PEM-encoded CA CRLs for Client Auth
    SSLCARevocationURI urisvE
    Server CA certificate revocation list store for Client Authentication
    SSLCertificateChainFile file-pathsvE
    File of PEM-encoded Server CA Certificates
    SSLCertificateFile file-path|certidsvE
    Server PEM-encoded X.509 certificate data file or token identifier
    SSLCertificateKeyFile file-path|keyidsvE
    Server PEM-encoded private key file
    SSLCipherSuite [protocol] cipher-spec DEFAULT (depends on +svdhE
    Cipher Suite available for negotiation in SSL +
    SSLCertificateURI urisvE
    Server certificate and key store
    SSLCipherSuite [protocol] cipher-spec DEFAULT (depends on +svdhE
    Cipher Suite available for negotiation in SSL handshake
    SSLClientHelloVars on|off off svE
    Enable collection of ClientHello variables
    SSLCompression on|off off svE
    Enable compression on the SSL level
    SSLCryptoDevice engine builtin sE
    Enable use of a cryptographic hardware accelerator
    SSLECHKeyDir dirnamesE
    Load the set of Encrypted Client Hello (ECH) PEM files in the named directory
    SSLEngine on|off off svE
    SSL Engine Operation Switch
    SSLFIPS on|off off sE
    SSL FIPS mode Switch
    SSLHonorCipherOrder on|off off svE
    Option to prefer the server's cipher preference order
    SSLOCSPDefaultResponder urisvE
    Set the default responder URI for OCSP validation
    SSLOCSPEnable on|leaf|off [flags] off svE
    Enable OCSP validation of the client certificate chain
    SSLOCSPNoverify on|off off svE
    skip the OCSP responder certificates verification
    SSLOCSPOverrideResponder on|off off svE
    Force use of the default responder URI for OCSP validation
    SSLOCSPProxyURL urlsvE
    Proxy URL to use for OCSP requests
    SSLOCSPResponderCertificateFile filesvE
    Set of trusted PEM encoded OCSP responder certificates
    SSLOCSPResponderTimeout seconds 10 svE
    Timeout for OCSP queries
    SSLOCSPResponseMaxAge seconds -1 svE
    Maximum allowable age for OCSP responses
    SSLOCSPResponseTimeSkew seconds 300 svE
    Maximum allowable time skew for OCSP response validation
    SSLOCSPUseRequestNonce on|off on svE
    Use a nonce within OCSP queries
    SSLOpenSSLConfCmd command-name command-valuesvE
    Configure OpenSSL parameters through its SSL_CONF API
    SSLOptions [+|-]option ...svdhE
    Configure various SSL engine run-time options
    SSLPassPhraseDialog type builtin sE
    Type of pass phrase dialog for encrypted private +
    SSLClientHelloVars on|off off svE
    Enable collection of ClientHello variables
    SSLCompression on|off off svE
    Enable compression on the SSL level
    SSLCryptoDevice engine builtin sE
    Enable use of a cryptographic hardware accelerator
    SSLECHKeyDir dirnamesE
    Load the set of Encrypted Client Hello (ECH) PEM files in the named directory
    SSLEngine on|off off svE
    SSL Engine Operation Switch
    SSLFIPS on|off off sE
    SSL FIPS mode Switch
    SSLHonorCipherOrder on|off off svE
    Option to prefer the server's cipher preference order
    SSLOCSPDefaultResponder urisvE
    Set the default responder URI for OCSP validation
    SSLOCSPEnable on|leaf|off [flags] off svE
    Enable OCSP validation of the client certificate chain
    SSLOCSPNoverify on|off off svE
    skip the OCSP responder certificates verification
    SSLOCSPOverrideResponder on|off off svE
    Force use of the default responder URI for OCSP validation
    SSLOCSPProxyURL urlsvE
    Proxy URL to use for OCSP requests
    SSLOCSPResponderCertificateFile filesvE
    Set of trusted PEM encoded OCSP responder certificates
    SSLOCSPResponderTimeout seconds 10 svE
    Timeout for OCSP queries
    SSLOCSPResponseMaxAge seconds -1 svE
    Maximum allowable age for OCSP responses
    SSLOCSPResponseTimeSkew seconds 300 svE
    Maximum allowable time skew for OCSP response validation
    SSLOCSPUseRequestNonce on|off on svE
    Use a nonce within OCSP queries
    SSLOpenSSLConfCmd command-name command-valuesvE
    Configure OpenSSL parameters through its SSL_CONF API
    SSLOptions [+|-]option ...svdhE
    Configure various SSL engine run-time options
    SSLPassPhraseDialog type builtin sE
    Type of pass phrase dialog for encrypted private keys
    SSLPolicy namesvE
    Apply a SSLPolicy by name
    SSLProtocol [+|-]protocol ... all -SSLv3 svE
    Configure usable SSL/TLS protocol versions
    SSLProxyCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates +
    SSLPolicy namesvE
    Apply a SSLPolicy by name
    SSLProtocol [+|-]protocol ... all -SSLv3 svE
    Configure usable SSL/TLS protocol versions
    SSLProxyCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates for Remote Server Auth
    SSLProxyCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for +
    SSLProxyCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for Remote Server Auth
    SSLProxyCACertificateURI urisvE
    Proxy CA certificate store for Remote Server Auth
    SSLProxyCARevocationCheck chain|leaf|none none svE
    Enable CRL-based revocation checking for Remote Server Auth
    SSLProxyCARevocationFile file-pathsvE
    File of concatenated PEM-encoded CA CRLs for Remote Server Auth
    SSLProxyCARevocationPath directory-pathsvE
    Directory of PEM-encoded CA CRLs for Remote Server Auth
    SSLProxyCheckPeerCN on|off on svE
    Whether to check the remote server certificate's CN field +
    SSLProxyCARevocationURI urisvE
    Proxy CA certificate revocation list store for Remote Server Auth
    SSLProxyCheckPeerCN on|off on svE
    Whether to check the remote server certificate's CN field
    SSLProxyCheckPeerExpire on|off on svE
    Whether to check if remote server certificate is expired +
    SSLProxyCheckPeerExpire on|off on svE
    Whether to check if remote server certificate is expired
    SSLProxyCheckPeerName on|off on svE
    Configure host name checking for remote server certificates +
    SSLProxyCheckPeerName on|off on svE
    Configure host name checking for remote server certificates
    SSLProxyCipherSuite [protocol] cipher-spec ALL:!ADH:RC4+RSA:+H +svE
    Cipher Suite available for negotiation in SSL +
    SSLProxyCipherSuite [protocol] cipher-spec ALL:!ADH:RC4+RSA:+H +svE
    Cipher Suite available for negotiation in SSL proxy handshake
    SSLProxyEngine on|off off svE
    SSL Proxy Engine Operation Switch
    SSLProxyMachineCertificateChainFile filenamesvE
    File of concatenated PEM-encoded CA certificates to be used by the proxy for choosing a certificate
    SSLProxyMachineCertificateFile filenamesvE
    File of concatenated PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificatePath directorysvE
    Directory of PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyEngine on|off off svE
    SSL Proxy Engine Operation Switch
    SSLProxyMachineCertificateChainFile filenamesvE
    File of concatenated PEM-encoded CA certificates to be used by the proxy for choosing a certificate
    SSLProxyMachineCertificateFile filenamesvE
    File of concatenated PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificatePath directorysvE
    Directory of PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificateURI urisvE
    Proxy certificate and key stores
    SSLProxyProtocol [+|-]protocol ... all -SSLv3 svE
    Configure usable SSL protocol flavors for proxy usage
    SSLProxyVerify level none svE
    Type of remote server Certificate verification
    SSLProxyVerifyDepth number 1 svE
    Maximum depth of CA Certificates in Remote Server @@ -1256,15 +1265,15 @@ port
    User unix-userid #-1 sB
    The userid under which the server will answer requests
    UserDir directory-filename public_html svB
    »ç¿ëÀÚº° µð·ºÅ丮 À§Ä¡
    VHostCGIMode On|Off|Secure On vX
    Determines whether the virtualhost can run +
    VHostCGIMode On|Off|Secure On vD
    Determines whether the virtualhost can run subprocesses, and the privileges available to subprocesses.
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...vX
    Assign arbitrary privileges to subprocesses created +
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...vD
    Assign arbitrary privileges to subprocesses created by a virtual host.
    VHostGroup unix-groupidvX
    Sets the Group ID under which a virtual host runs.
    VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...vX
    Assign arbitrary privileges to a virtual host.
    VHostSecure On|Off On vX
    Determines whether the server runs with enhanced security +
    VHostGroup unix-groupidvD
    Sets the Group ID under which a virtual host runs.
    VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...vD
    Assign arbitrary privileges to a virtual host.
    VHostSecure On|Off On vD
    Determines whether the server runs with enhanced security for the virtualhost.
    VHostUser unix-useridvX
    Sets the User ID under which a virtual host runs.
    VHostUser unix-useridvD
    Sets the User ID under which a virtual host runs.
    VirtualDocumentRoot interpolated-directory|none none svE
    Dynamically configure the location of the document root for a given virtual host
    VirtualDocumentRootIP interpolated-directory|none none svE
    Dynamically configure the location of the document root diff --git a/docs/manual/mod/quickreference.html.tr.utf8 b/docs/manual/mod/quickreference.html.tr.utf8 index 3386a8d3f0..f3bbfb6098 100644 --- a/docs/manual/mod/quickreference.html.tr.utf8 +++ b/docs/manual/mod/quickreference.html.tr.utf8 @@ -127,7 +127,7 @@ type
    AliasPreservePath OFF|ON OFF skdT
    Map the full path after the alias in a location.
    Allow from all|host|env=[!]env-variable -[host|env=[!]env-variable] ...dhE
    Controls which hosts can access an area of the +[host|env=[!]env-variable] ...dhK
    Controls which hosts can access an area of the server
    AllowCONNECT port[-port] [port[-port]] ... | None 443 563 skE
    Ports that are allowed to CONNECT through the @@ -394,20 +394,20 @@ module
    CryptoIV value none skdhE
    IV (Initialization Vector) to be used by the crypto filter
    CryptoKey value none skdhE
    Key to be used by the crypto filter
    CryptoSize integer 131072 skdhE
    Maximum size in bytes to buffer by the crypto filter
    CTAuditStorage directorysE
    Existing directory where data for off-line audit will be stored
    CTLogClient executablesE
    Location of certificate-transparency log client tool
    CTLogConfigDB filenamesE
    Log configuration database supporting dynamic updates
    CTMaxSCTAge num-secondssE
    Maximum age of SCT obtained from a log, before it will be +
    CTAuditStorage directorysK
    Existing directory where data for off-line audit will be stored
    CTLogClient executablesK
    Location of certificate-transparency log client tool
    CTLogConfigDB filenamesK
    Log configuration database supporting dynamic updates
    CTMaxSCTAge num-secondssK
    Maximum age of SCT obtained from a log, before it will be refreshed
    CTProxyAwareness oblivious|aware|requireskE
    Level of CT awareness and enforcement for a proxy +
    CTProxyAwareness oblivious|aware|requireskK
    Level of CT awareness and enforcement for a proxy
    CTSCTStorage directorysE
    Existing directory where SCTs are managed
    CTServerHelloSCTLimit limitsE
    Limit on number of SCTs that can be returned in +
    CTSCTStorage directorysK
    Existing directory where SCTs are managed
    CTServerHelloSCTLimit limitsK
    Limit on number of SCTs that can be returned in ServerHello
    CTStaticLogConfig log-id|- public-key-file|- 1|0|- min-timestamp|- max-timestamp|- -log-URL|-sE
    Static configuration of information about a log
    CTStaticSCTs certificate-pem-file sct-directorysE
    Static configuration of one or more SCTs for a server certificate +log-URL|-sK
    Static configuration of information about a log
    CTStaticSCTs certificate-pem-file sct-directorysK
    Static configuration of one or more SCTs for a server certificate
    CustomLog dosya|borulu-süreç biçem|takma-ad @@ -458,7 +458,7 @@ türünü belirlerdi.
    DeflateMemLevel value 9 skE
    How much memory should be used by zlib for compression
    DeflateWindowSize value 15 skE
    Zlib compression window size
    Deny from all|host|env=[!]env-variable -[host|env=[!]env-variable] ...dhE
    Controls which hosts are denied access to the +[host|env=[!]env-variable] ...dhK
    Controls which hosts are denied access to the server
    <Directory dizin-yolu> ... </Directory>skÇ
    Sadece ismi belirtilen dosya sistemi dizininde ve bunun @@ -476,7 +476,7 @@ server
    skÇ
    Bir düzenli ifade ile eşleşen dosya sistemi dizinlerinin içeriklerine uygulanacak bir yönerge grubunu sarmalar.
    DirectorySlash On|Off On skdhT
    Bölü çizgisi ile biten yönlendirmeleri açar/kapar.
    DocumentRoot dizin-yolu /usr/local/apache/h +skÇ
    İstemciye görünür olan ana belge ağacının kök dizinini belirler.
    DTracePrivileges On|Off Off sD
    Determines whether the privileges required by dtrace are enabled.
    DTracePrivileges On|Off Off sK
    Determines whether the privileges required by dtrace are enabled.
    DumpIOInput On|Off Off sE
    Dump all input data to the error log
    DumpIOOutput On|Off Off sE
    Dump all output data to the error log
    <Else> ... </Else>skdhÇ
    Önceki bir <If> veya <ElseIf> bölümünün koşulu, çalışma anında bir istek tarafından yerine getirilmediği takdirde uygulanacak yönergeleri içerir
    <IfVersion [[!]operator] version> ... </IfVersion>skdhE
    contains version dependent configuration
    ImapBase map|referer|URL http://servername/ skdhT
    Default base for imagemap files
    ImapDefault error|nocontent|map|referer|URL nocontent skdhT
    Default action when an imagemap is called with coordinates +
    ImapBase map|referer|URL http://servername/ skdhK
    Default base for imagemap files
    ImapDefault error|nocontent|map|referer|URL nocontent skdhK
    Default action when an imagemap is called with coordinates that are not explicitly mapped
    ImapMenu none|formatted|semiformatted|unformatted formatted skdhT
    Action if no coordinates are given when calling +
    ImapMenu none|formatted|semiformatted|unformatted formatted skdhK
    Action if no coordinates are given when calling an imagemap
    Include dosya-yolu|dizin-yolu|jokerskdÇ
    Sunucu yapılandırma dosyalarının başka dosyaları içermesini sağlar.
    MDDriveMode always|auto|manual auto sD
    former name of MDRenewMode.
    MDExternalAccountBinding key-id hmac-64 | none | file none sD
    Set the external account binding keyid and hmac values to use at CA
    MDHttpProxy urlsD
    Define a proxy for outgoing connections.
    MDInitialDelay duration 0s sD
    How long to delay the first certificate check.
    MDMatchNames all|servernames all sD
    Determines how DNS names are matched to vhosts
    MDMember hostnamesD
    Additional hostname for the managed domain.
    MDMembers auto|manual auto sD
    Control if the alias domain names are automatically added.
    MDMessageCmd path-to-cmd optional-argssD
    Handle events for Manage Domains
    MDMustStaple on|off off sD
    Control if new certificates carry the OCSP Must Staple flag.
    MDNotifyCmd path [ args ]sD
    Run a program when a Managed Domain is ready.
    MDomain dns-name [ other-dns-name... ] [auto|manual]sD
    Define list of domain names that belong to one group.
    <MDomainSet dns-name [ other-dns-name... ]>...</MDomainSet>sD
    Container for directives applied to the same managed domains.
    MDPortMap map1 [ map2 ] http:80 https:443 sD
    Map external to internal ports for domain ownership verification.
    MDPrivateKeys type [ params... ] RSA 2048 sD
    Set type and size of the private keys generated.
    MDProfile namesD
    Use a specific ACME profile from the CA
    MDProfileMandatory on|off off sD
    Control if an MDProfile is mandatory.
    MDRenewMode always|auto|manual auto sD
    Controls if certificates shall be renewed.
    MDRenewViaARI on|off on sD
    usage of the ACME ARI extension (rfc9773).
    MDRenewWindow duration 33% sD
    Control when a certificate will be renewed.
    MDRequireHttps off|temporary|permanent off sD
    Redirects http: traffic to https: for Managed Domains.
    MDRetryDelay duration 30s sD
    Time length for first retry, doubled on every consecutive error.
    MDRetryFailover number 13 sD
    The number of errors before a failover to another CA is triggered
    MDServerStatus on|off off sD
    Control if Managed Domain information is added to server-status.
    MDStapleOthers on|off on sD
    Enable stapling for certificates not managed by mod_md.
    MDStapling on|off off sD
    Enable stapling for all or a particular MDomain.
    MDStaplingKeepResponse duration 7d sD
    Controls when old responses should be removed.
    MDStaplingRenewWindow duration 33% sD
    Control when the stapling responses will be renewed.
    MDStoreDir path md sD
    Path on the local file system to store the Managed Domains data.
    MDStoreLocks on|off|duration off sD
    Configure locking of store for updates
    MDWarnWindow duration 10% sD
    Define the time window when you want to be warned about an expiring certificate.
    MemcacheConnTTL num[units] 15s skE
    Keepalive time for idle connections
    MergeSlashes ON|OFF ON skÇ
    Controls whether the server merges consecutive slashes in URLs. +
    MDHttpProxyCACertificateFile path-to-pem-file none sD
    Sets the root (CA) certificates to use for TLS connections to the http-proxy.
    MDInitialDelay duration 0s sD
    How long to delay the first certificate check.
    MDMatchNames all|servernames all sD
    Determines how DNS names are matched to vhosts
    MDMember hostnamesD
    Additional hostname for the managed domain.
    MDMembers auto|manual auto sD
    Control if the alias domain names are automatically added.
    MDMessageCmd path-to-cmd optional-argssD
    Handle events for Manage Domains
    MDMustStaple on|off off sD
    Control if new certificates carry the OCSP Must Staple flag.
    MDNotifyCmd path [ args ]sD
    Run a program when a Managed Domain is ready.
    MDomain dns-name [ other-dns-name... ] [auto|manual]sD
    Define list of domain names that belong to one group.
    <MDomainSet dns-name [ other-dns-name... ]>...</MDomainSet>sD
    Container for directives applied to the same managed domains.
    MDPortMap map1 [ map2 ] http:80 https:443 sD
    Map external to internal ports for domain ownership verification.
    MDPrivateKeys type [ params... ] RSA 2048 sD
    Set type and size of the private keys generated.
    MDProfile namesD
    Use a specific ACME profile from the CA
    MDProfileMandatory on|off off sD
    Control if an MDProfile is mandatory.
    MDRenewMode always|auto|manual auto sD
    Controls if certificates shall be renewed.
    MDRenewViaARI on|off on sD
    usage of the ACME ARI extension (rfc9773).
    MDRenewWindow duration 33% sD
    Control when a certificate will be renewed.
    MDRequireHttps off|temporary|permanent off sD
    Redirects http: traffic to https: for Managed Domains.
    MDRetryDelay duration 30s sD
    Time length for first retry, doubled on every consecutive error.
    MDRetryFailover number 13 sD
    The number of errors before a failover to another CA is triggered
    MDServerStatus on|off off sD
    Control if Managed Domain information is added to server-status.
    MDStapleOthers on|off on sD
    Enable stapling for certificates not managed by mod_md.
    MDStapling on|off off sD
    Enable stapling for all or a particular MDomain.
    MDStaplingKeepResponse duration 7d sD
    Controls when old responses should be removed.
    MDStaplingRenewWindow duration 33% sD
    Control when the stapling responses will be renewed.
    MDStoreDir path md sD
    Path on the local file system to store the Managed Domains data.
    MDStoreLocks on|off|duration off sD
    Configure locking of store for updates
    MDWarnWindow duration 10% sD
    Define the time window when you want to be warned about an expiring certificate.
    MemcacheConnTTL num[units] 15s skE
    Keepalive time for idle connections
    MergeSlashes ON|OFF ON skÇ
    Controls whether the server merges consecutive slashes in URLs.
    MergeTrailers [on|off] off skÇ
    Determines whether trailers are merged into headers
    MetaDir directory .web skdhE
    Name of the directory to find CERN-style meta information +
    MergeTrailers [on|off] off skÇ
    Determines whether trailers are merged into headers
    MetaDir directory .web skdhK
    Name of the directory to find CERN-style meta information files
    MetaFiles on|off off skdhE
    Activates CERN meta-file processing
    MetaSuffix suffix .meta skdhE
    File name suffix for the file containing CERN-style +
    MetaFiles on|off off skdhK
    Activates CERN meta-file processing
    MetaSuffix suffix .meta skdhK
    File name suffix for the file containing CERN-style meta information
    MimeMagicDecompression On|Off Off skE
    Enable decompression of compressed files for MIME type detection
    MimeMagicFile file-pathskE
    Enable MIME-type determination based on file contents +
    MimeMagicDecompression On|Off Off skE
    Enable decompression of compressed files for MIME type detection
    MimeMagicFile file-pathskE
    Enable MIME-type determination based on file contents using the specified magic file
    MimeOptions option [option] ...skdhT
    Configures mod_mime behavior
    MinSpareServers sayı 5 sM
    Boştaki çocuk süreçlerin asgari sayısı
    MinSpareThreads sayısM
    İsteklerin ani artışında devreye girecek boştaki evrelerin asgari +
    MimeOptions option [option] ...skdhT
    Configures mod_mime behavior
    MinSpareServers sayı 5 sM
    Boştaki çocuk süreçlerin asgari sayısı
    MinSpareThreads sayısM
    İsteklerin ani artışında devreye girecek boştaki evrelerin asgari sayısını belirler.
    MMapFile file-path [file-path] ...sD
    Map a list of files into memory at startup time
    ModemStandard V.21|V.26bis|V.32|V.34|V.92dD
    Modem standard to simulate
    ModMimeUsePathInfo On|Off Off dT
    Tells mod_mime to treat path_info +
    MMapFile file-path [file-path] ...sD
    Map a list of files into memory at startup time
    ModemStandard V.21|V.26bis|V.32|V.34|V.92dD
    Modem standard to simulate
    ModMimeUsePathInfo On|Off Off dT
    Tells mod_mime to treat path_info components as part of the filename
    MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers -[Handlers|Filters] NegotiatedOnly skdhT
    The types of files that will be included when searching for +
    MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers +[Handlers|Filters] NegotiatedOnly skdhT
    The types of files that will be included when searching for a matching file with MultiViews
    Mutex mekanizma [default|muteks-ismi] ... [OmitPID] default sÇ
    Muteks mekanizmasını ve kilit dosyası dizinini tüm muteksler veya belirtilenler için yapılandırır
    NameVirtualHost adres[:port]sÇ
    ÖNERİLMİYOR: İsme dayalı sanal konaklar için IP adresi belirtir
    NoProxy host [host] ...skE
    Hosts, domains, or networks that will be connected to +
    Mutex mekanizma [default|muteks-ismi] ... [OmitPID] default sÇ
    Muteks mekanizmasını ve kilit dosyası dizinini tüm muteksler veya belirtilenler için yapılandırır
    NameVirtualHost adres[:port]sÇ
    ÖNERİLMİYOR: İsme dayalı sanal konaklar için IP adresi belirtir
    NoProxy host [host] ...skE
    Hosts, domains, or networks that will be connected to directly
    NWSSLTrustedCerts filename [filename] ...sT
    List of additional client certificates
    NWSSLUpgradeable [IP-address:]portnumbersT
    Allows a connection to be upgraded to an SSL connection upon request
    Options - [+|-]seçenek [[+|-]seçenek] ... FollowSymlinks skdhÇ
    Belli bir dizinde geçerli olacak özellikleri yapılandırır. +
    NWSSLTrustedCerts filename [filename] ...sT
    List of additional client certificates
    NWSSLUpgradeable [IP-address:]portnumbersT
    Allows a connection to be upgraded to an SSL connection upon request
    Options + [+|-]seçenek [[+|-]seçenek] ... FollowSymlinks skdhÇ
    Belli bir dizinde geçerli olacak özellikleri yapılandırır.
    Order ordering Deny,Allow dhE
    Controls the default access state and the order in which +
    Order ordering Deny,Allow dhK
    Controls the default access state and the order in which Allow and Deny are evaluated.
    OutputSed sed-commanddhD
    Sed command for filtering response content
    PassEnv ortam-değişkeni [ortam-değişkeni] -...skdhT
    Ortam değişkenlerini kabuktan aktarır.
    PidFile dosya logs/httpd.pid sM
    Ana sürecin süreç kimliğinin (PID) kaydedileceği dosyayı belirler.
    PolicyConditional ignore|log|enforceskdE
    Enable the conditional request policy.
    PolicyConditionalURL urlskdE
    URL describing the conditional request policy.
    PolicyEnvironment variable log-value ignore-valueskdE
    Override policies based on an environment variable.
    PolicyFilter on|offskdE
    Enable or disable policies for the given URL space.
    PolicyKeepalive ignore|log|enforceskdE
    Enable the keepalive policy.
    PolicyKeepaliveURL urlskdE
    URL describing the keepalive policy.
    PolicyLength ignore|log|enforceskdE
    Enable the content length policy.
    PolicyLengthURL urlskdE
    URL describing the content length policy.
    PolicyMaxage ignore|log|enforce ageskdE
    Enable the caching minimum max-age policy.
    PolicyMaxageURL urlskdE
    URL describing the caching minimum freshness lifetime policy.
    PolicyNocache ignore|log|enforceskdE
    Enable the caching no-cache policy.
    PolicyNocacheURL urlskdE
    URL describing the caching no-cache policy.
    PolicyType ignore|log|enforce type [ type [ ... ]]skdE
    Enable the content type policy.
    PolicyTypeURL urlskdE
    URL describing the content type policy.
    PolicyValidation ignore|log|enforceskdE
    Enable the validation policy.
    PolicyValidationURL urlskdE
    URL describing the content type policy.
    PolicyVary ignore|log|enforce header [ header [ ... ]]skdE
    Enable the Vary policy.
    PolicyVaryURL urlskdE
    URL describing the content type policy.
    PolicyVersion ignore|log|enforce HTTP/0.9|HTTP/1.0|HTTP/1.1skdE
    Enable the version policy.
    PolicyVersionURL urlskdE
    URL describing the minimum request HTTP version policy.
    PollersPerChild number 0 sM
    Number of poll threads per child process
    PrivilegesMode FAST|SECURE|SELECTIVE FAST skdD
    Trade off processing speed and efficiency vs security against +
    OutputSed sed-commanddhD
    Sed command for filtering response content
    PassEnv ortam-değişkeni [ortam-değişkeni] +...skdhT
    Ortam değişkenlerini kabuktan aktarır.
    PidFile dosya logs/httpd.pid sM
    Ana sürecin süreç kimliğinin (PID) kaydedileceği dosyayı belirler.
    PolicyConditional ignore|log|enforceskdE
    Enable the conditional request policy.
    PolicyConditionalURL urlskdE
    URL describing the conditional request policy.
    PolicyEnvironment variable log-value ignore-valueskdE
    Override policies based on an environment variable.
    PolicyFilter on|offskdE
    Enable or disable policies for the given URL space.
    PolicyKeepalive ignore|log|enforceskdE
    Enable the keepalive policy.
    PolicyKeepaliveURL urlskdE
    URL describing the keepalive policy.
    PolicyLength ignore|log|enforceskdE
    Enable the content length policy.
    PolicyLengthURL urlskdE
    URL describing the content length policy.
    PolicyMaxage ignore|log|enforce ageskdE
    Enable the caching minimum max-age policy.
    PolicyMaxageURL urlskdE
    URL describing the caching minimum freshness lifetime policy.
    PolicyNocache ignore|log|enforceskdE
    Enable the caching no-cache policy.
    PolicyNocacheURL urlskdE
    URL describing the caching no-cache policy.
    PolicyType ignore|log|enforce type [ type [ ... ]]skdE
    Enable the content type policy.
    PolicyTypeURL urlskdE
    URL describing the content type policy.
    PolicyValidation ignore|log|enforceskdE
    Enable the validation policy.
    PolicyValidationURL urlskdE
    URL describing the content type policy.
    PolicyVary ignore|log|enforce header [ header [ ... ]]skdE
    Enable the Vary policy.
    PolicyVaryURL urlskdE
    URL describing the content type policy.
    PolicyVersion ignore|log|enforce HTTP/0.9|HTTP/1.0|HTTP/1.1skdE
    Enable the version policy.
    PolicyVersionURL urlskdE
    URL describing the minimum request HTTP version policy.
    PollersPerChild number 0 sM
    Number of poll threads per child process
    PrivilegesMode FAST|SECURE|SELECTIVE FAST skdK
    Trade off processing speed and efficiency vs security against malicious privileges-aware code.
    Protocol protokolskÇ
    Dinlenen bir soket için protokol
    ProtocolEcho On|Off Off skD
    Turn the echo server on or off
    Protocols protocol ... http/1.1 skÇ
    Protocols available for a server/virtual host
    ProtocolsHonorOrder On|Off On skÇ
    Determines if order of Protocols determines precedence during negotiation
    <Proxy wildcard-url> ...</Proxy>skE
    Container for directives applied to proxied resources
    Proxy100Continue Off|On On skdE
    Forward 100-continue expectation to the origin server
    ProxyAddHeaders Off|On On skdE
    Add proxy information in X-Forwarded-* headers
    ProxyAsyncDelay time[s]skdE
    Time to poll synchronously before handing a connection to the +
    Protocol protokolskÇ
    Dinlenen bir soket için protokol
    ProtocolEcho On|Off Off skD
    Turn the echo server on or off
    Protocols protocol ... http/1.1 skÇ
    Protocols available for a server/virtual host
    ProtocolsHonorOrder On|Off On skÇ
    Determines if order of Protocols determines precedence during negotiation
    <Proxy wildcard-url> ...</Proxy>skE
    Container for directives applied to proxied resources
    Proxy100Continue Off|On On skdE
    Forward 100-continue expectation to the origin server
    ProxyAddHeaders Off|On On skdE
    Add proxy information in X-Forwarded-* headers
    ProxyAsyncDelay time[s]skdE
    Time to poll synchronously before handing a connection to the MPM for asynchronous processing
    ProxyAsyncIdleTimeout time[s]skdE
    Inactivity timeout for asynchronous proxy connections
    ProxyBadHeader IsError|Ignore|StartBody IsError skE
    Determines how to handle bad header lines in a +
    ProxyAsyncIdleTimeout time[s]skdE
    Inactivity timeout for asynchronous proxy connections
    ProxyBadHeader IsError|Ignore|StartBody IsError skE
    Determines how to handle bad header lines in a response
    ProxyBeaconAddress address:portskE
    Address of the reverse proxy to which a backend sends its +
    ProxyBeaconAddress address:portskE
    Address of the reverse proxy to which a backend sends its announcements
    ProxyBeaconAdvertise urlskE
    The routable URL a backend announces to the reverse proxy
    ProxyBeaconBalancer nameskE
    Name of the balancer that announced backends are added to
    ProxyBeaconInterval interval 5 skE
    How often a backend publishes its announcement
    ProxyBeaconListen [address][:port]skE
    Address on which the reverse proxy receives backend +
    ProxyBeaconAdvertise urlskE
    The routable URL a backend announces to the reverse proxy
    ProxyBeaconBalancer nameskE
    Name of the balancer that announced backends are added to
    ProxyBeaconInterval interval 5 skE
    How often a backend publishes its announcement
    ProxyBeaconListen [address][:port]skE
    Address on which the reverse proxy receives backend beacons
    ProxyBeaconMaxSkew intervalskE
    Maximum allowed age of a signed announcement
    ProxyBeaconSecret secretskE
    Pre-shared secret used to authenticate announcements
    ProxyBeaconTimeout interval 0 skE
    How long the proxy waits, without an announcement, before a backend +
    ProxyBeaconMaxSkew intervalskE
    Maximum allowed age of a signed announcement
    ProxyBeaconSecret secretskE
    Pre-shared secret used to authenticate announcements
    ProxyBeaconTimeout interval 0 skE
    How long the proxy waits, without an announcement, before a backend is taken out of rotation
    ProxyBlock *|hostname|partial-hostname [hostname|partial-hostname]...skE
    Disallow proxy requests to certain hosts
    ProxyDomain DomainskE
    Default domain name for proxied requests
    ProxyErrorOverride Off|On [code ...] Off skdE
    Override error pages for proxied content
    ProxyExpressDBMFile pathnameskE
    Pathname to DBM file.
    ProxyExpressDBMType type default skE
    DBM type of file.
    ProxyExpressEnable on|off off skE
    Enable the module functionality.
    ProxyFCGIBackendType FPM|GENERIC FPM skdhE
    Specify the type of backend FastCGI application
    ProxyFCGISetEnvIf conditional-expression +
    ProxyBlock *|hostname|partial-hostname [hostname|partial-hostname]...skE
    Disallow proxy requests to certain hosts
    ProxyDomain DomainskE
    Default domain name for proxied requests
    ProxyErrorOverride Off|On [code ...] Off skdE
    Override error pages for proxied content
    ProxyExpressDBMFile pathnameskE
    Pathname to DBM file.
    ProxyExpressDBMType type default skE
    DBM type of file.
    ProxyExpressEnable on|off off skE
    Enable the module functionality.
    ProxyFCGIBackendType FPM|GENERIC FPM skdhE
    Specify the type of backend FastCGI application
    ProxyFCGISetEnvIf conditional-expression [!]environment-variable-name - [value-expression]skdhE
    Allow variables sent to FastCGI servers to be fixed up
    ProxyFtpDirCharset character_set ISO-8859-1 skdE
    Define the character set for proxied FTP listings
    ProxyFtpEscapeWildcards on|off on skdE
    Whether wildcards in requested filenames are escaped when sent to the FTP server
    ProxyFtpListOnWildcard on|off on skdE
    Whether wildcards in requested filenames trigger a file listing
    ProxyHCExpr name {ap_expr expression}skE
    Creates a named condition expression to use to determine health of the backend based on its response
    ProxyHCTemplate name parameter=setting [...]skE
    Creates a named template for setting various health check parameters
    ProxyHCTPsize size 16 sE
    Sets the total server-wide size of the threadpool used for the health check workers
    ProxyHTMLBufSize bytes 8192 skdT
    Sets the buffer size increment for buffering inline scripts and + [value-expression]skdhE
    Allow variables sent to FastCGI servers to be fixed up
    ProxyFtpDirCharset character_set ISO-8859-1 skdE
    Define the character set for proxied FTP listings
    ProxyFtpEscapeWildcards on|off on skdE
    Whether wildcards in requested filenames are escaped when sent to the FTP server
    ProxyFtpListOnWildcard on|off on skdE
    Whether wildcards in requested filenames trigger a file listing
    ProxyHCExpr name {ap_expr expression}skE
    Creates a named condition expression to use to determine health of the backend based on its response
    ProxyHCTemplate name parameter=setting [...]skE
    Creates a named template for setting various health check parameters
    ProxyHCTPsize size 16 sE
    Sets the total server-wide size of the threadpool used for the health check workers
    ProxyHTMLBufSize bytes 8192 skdT
    Sets the buffer size increment for buffering inline scripts and stylesheets.
    ProxyHTMLCharsetOut Charset | * UTF-8 skdT
    Specify a charset for mod_proxy_html output.
    ProxyHTMLDocType HTML|XHTML [Legacy]
    OR +
    ProxyHTMLCharsetOut Charset | * UTF-8 skdT
    Specify a charset for mod_proxy_html output.
    ProxyHTMLDocType HTML|XHTML [Legacy]
    OR
    ProxyHTMLDocType fpi [SGML|XML]
    OR
    ProxyHTMLDocType html5
    OR -
    ProxyHTMLDocType auto
    auto (2.5/trunk ver +skdT
    Sets an HTML or XHTML document type declaration.
    ProxyHTMLEnable On|Off Off skdT
    Turns the proxy_html filter on or off.
    ProxyHTMLEvents attribute [attribute ...]skdT
    Specify attributes to treat as scripting events.
    ProxyHTMLExtended On|Off Off skdT
    Determines whether to fix links in inline scripts, stylesheets, +
    ProxyHTMLDocType auto
    auto (2.5/trunk ver +skdT
    Sets an HTML or XHTML document type declaration.
    ProxyHTMLEnable On|Off Off skdT
    Turns the proxy_html filter on or off.
    ProxyHTMLEvents attribute [attribute ...]skdT
    Specify attributes to treat as scripting events.
    ProxyHTMLExtended On|Off Off skdT
    Determines whether to fix links in inline scripts, stylesheets, and scripting events.
    ProxyHTMLFixups [lowercase] [dospath] [reset] none skdT
    Fixes for simple HTML errors.
    ProxyHTMLInterp On|Off Off skdT
    Enables per-request interpolation of +
    ProxyHTMLFixups [lowercase] [dospath] [reset] none skdT
    Fixes for simple HTML errors.
    ProxyHTMLInterp On|Off Off skdT
    Enables per-request interpolation of ProxyHTMLURLMap rules.
    ProxyHTMLLinks element attribute [attribute2 ...]skdT
    Specify HTML elements that have URL attributes to be rewritten.
    ProxyHTMLMeta On|Off Off skdT
    Turns on or off extra pre-parsing of metadata in HTML +
    ProxyHTMLLinks element attribute [attribute2 ...]skdT
    Specify HTML elements that have URL attributes to be rewritten.
    ProxyHTMLMeta On|Off Off skdT
    Turns on or off extra pre-parsing of metadata in HTML <head> sections.
    ProxyHTMLStripComments On|Off Off skdT
    Determines whether to strip HTML comments.
    ProxyHTMLURLMap from-pattern to-pattern [flags] [cond]skdT
    Defines a rule to rewrite HTML links
    ProxyIOBufferSize bytes 8192 skE
    Determine size of internal data throughput buffer
    <ProxyMatch regex> ...</ProxyMatch>skE
    Container for directives applied to regular-expression-matched +
    ProxyHTMLStripComments On|Off Off skdT
    Determines whether to strip HTML comments.
    ProxyHTMLURLMap from-pattern to-pattern [flags] [cond]skdT
    Defines a rule to rewrite HTML links
    ProxyIOBufferSize bytes 8192 skE
    Determine size of internal data throughput buffer
    <ProxyMatch regex> ...</ProxyMatch>skE
    Container for directives applied to regular-expression-matched proxied resources
    ProxyMaxForwards number -1 skE
    Maximum number of proxies that a request can be forwarded +
    ProxyMaxForwards number -1 skE
    Maximum number of proxies that a request can be forwarded through
    ProxyPass [path] !|url [key=value - [key=value ...]] [nocanon] [interpolate] [noquery]skdE
    Maps remote servers into the local server URL-space
    ProxyPassInherit On|Off On skE
    Inherit ProxyPass directives defined from the main server
    ProxyPassInterpolateEnv On|Off Off skdE
    Enable Environment Variable interpolation in Reverse Proxy configurations
    ProxyPassMatch [regex] !|url [key=value - [key=value ...]]skdE
    Maps remote servers into the local server URL-space using regular expressions
    ProxyPassReverse [path] url -[interpolate]skdE
    Adjusts the URL in HTTP response headers sent from a reverse +
    ProxyPass [path] !|url [key=value + [key=value ...]] [nocanon] [interpolate] [noquery]skdE
    Maps remote servers into the local server URL-space
    ProxyPassInherit On|Off On skE
    Inherit ProxyPass directives defined from the main server
    ProxyPassInterpolateEnv On|Off Off skdE
    Enable Environment Variable interpolation in Reverse Proxy configurations
    ProxyPassMatch [regex] !|url [key=value + [key=value ...]]skdE
    Maps remote servers into the local server URL-space using regular expressions
    ProxyPassReverse [path] url +[interpolate]skdE
    Adjusts the URL in HTTP response headers sent from a reverse proxied server
    ProxyPassReverseCookieDomain internal-domain -public-domain [interpolate]skdE
    Adjusts the Domain string in Set-Cookie headers from a reverse- +
    ProxyPassReverseCookieDomain internal-domain +public-domain [interpolate]skdE
    Adjusts the Domain string in Set-Cookie headers from a reverse- proxied server
    ProxyPassReverseCookiePath internal-path -public-path [interpolate]skdE
    Adjusts the Path string in Set-Cookie headers from a reverse- +
    ProxyPassReverseCookiePath internal-path +public-path [interpolate]skdE
    Adjusts the Path string in Set-Cookie headers from a reverse- proxied server
    ProxyPreserveHost On|Off Off skdE
    Use incoming Host HTTP request header for proxy +
    ProxyPreserveHost On|Off Off skdE
    Use incoming Host HTTP request header for proxy request
    ProxyReceiveBufferSize bytes 0 skE
    Network buffer size for proxied HTTP and FTP +
    ProxyReceiveBufferSize bytes 0 skE
    Network buffer size for proxied HTTP and FTP connections
    ProxyRemote match remote-server [username:password]skE
    Remote proxy used to handle certain requests
    ProxyRemoteMatch regex remote-server [username:password]skE
    Remote proxy used to handle requests matched by regular +
    ProxyRemote match remote-server [username:password]skE
    Remote proxy used to handle certain requests
    ProxyRemoteMatch regex remote-server [username:password]skE
    Remote proxy used to handle requests matched by regular expressions
    ProxyRequests On|Off Off skE
    Enables forward (standard) proxy requests
    ProxySCGIInternalRedirect On|Off|Headername On skdE
    Enable or disable internal redirect responses from the +
    ProxyRequests On|Off Off skE
    Enables forward (standard) proxy requests
    ProxySCGIInternalRedirect On|Off|Headername On skdE
    Enable or disable internal redirect responses from the backend
    ProxySCGISendfile On|Off|Headername Off skdE
    Enable evaluation of X-Sendfile pseudo response +
    ProxySCGISendfile On|Off|Headername Off skdE
    Enable evaluation of X-Sendfile pseudo response header
    ProxySet url key=value [key=value ...]skdE
    Set various Proxy balancer or member parameters
    ProxySourceAddress addressskE
    Set local IP address for outgoing proxy connections
    ProxyStatus Off|On|Full Off skE
    Show Proxy LoadBalancer status in mod_status
    ProxyTimeout time-interval[s]skE
    Network timeout for proxied requests
    ProxyVia On|Off|Full|Block Off skE
    Information provided in the Via HTTP response +
    ProxySet url key=value [key=value ...]skdE
    Set various Proxy balancer or member parameters
    ProxySourceAddress addressskE
    Set local IP address for outgoing proxy connections
    ProxyStatus Off|On|Full Off skE
    Show Proxy LoadBalancer status in mod_status
    ProxyTimeout time-interval[s]skE
    Network timeout for proxied requests
    ProxyVia On|Off|Full|Block Off skE
    Information provided in the Via HTTP response header for proxied requests
    ProxyWebsocketAsync ON|OFFskE
    Instructs this module to try to create an asynchronous tunnel
    ProxyWebsocketAsyncDelay num[ms] 0 skE
    Sets the amount of time the tunnel waits synchronously for data
    ProxyWebsocketFallbackToProxyHttp On|Off On skE
    Instructs this module to let mod_proxy_http handle the request
    ProxyWebsocketIdleTimeout num[ms] 0 skE
    Sets the maximum amount of time to wait for data on the websockets tunnel
    QualifyRedirectURL On|Off Off skdÇ
    Controls whether the REDIRECT_URL environment variable is +
    ProxyWebsocketAsync ON|OFFskK
    Instructs this module to try to create an asynchronous tunnel
    ProxyWebsocketAsyncDelay num[ms] 0 skK
    Sets the amount of time the tunnel waits synchronously for data
    ProxyWebsocketFallbackToProxyHttp On|Off On skK
    Instructs this module to let mod_proxy_http handle the request
    ProxyWebsocketIdleTimeout num[ms] 0 skK
    Sets the maximum amount of time to wait for data on the websockets tunnel
    QualifyRedirectURL On|Off Off skdÇ
    Controls whether the REDIRECT_URL environment variable is fully qualified
    ReadBufferSize bytes 8192 skdÇ
    Size of the buffers used to read data
    ReadmeName dosya-ismiskdhT
    Dizin listesinin sonuna yerleştirilecek dosyanın ismini +
    ReadBufferSize bytes 8192 skdÇ
    Size of the buffers used to read data
    ReadmeName dosya-ismiskdhT
    Dizin listesinin sonuna yerleştirilecek dosyanın ismini belirler.
    ReceiveBufferSize bayt-sayısı 0 sM
    TCP alım tamponu boyu
    Redirect [durum] URL-yolu -URLskdhT
    İstemciyi, bir yönlendirme isteği döndürerek farklı bir URL'ye +
    ReceiveBufferSize bayt-sayısı 0 sM
    TCP alım tamponu boyu
    Redirect [durum] URL-yolu +URLskdhT
    İstemciyi, bir yönlendirme isteği döndürerek farklı bir URL'ye yönlendirir.
    RedirectMatch [durum] düzenli-ifade -URLskdhT
    Geçerli URL ile eşleşen bir düzenli ifadeye dayanarak bir harici +
    RedirectMatch [durum] düzenli-ifade +URLskdhT
    Geçerli URL ile eşleşen bir düzenli ifadeye dayanarak bir harici yönlendirme gönderir.
    RedirectPermanent URL-yolu URLskdhT
    İstemciyi, kalıcı bir yönlendirme isteği döndürerek farklı bir +
    RedirectPermanent URL-yolu URLskdhT
    İstemciyi, kalıcı bir yönlendirme isteği döndürerek farklı bir URL'ye yönlendirir.
    RedirectRelative On|Off Off skdT
    Allows relative redirect targets.
    RedirectTemp URL-yolu URLskdhT
    İstemciyi, geçici bir yönlendirme isteği döndürerek farklı bir +
    RedirectRelative On|Off Off skdT
    Allows relative redirect targets.
    RedirectTemp URL-yolu URLskdhT
    İstemciyi, geçici bir yönlendirme isteği döndürerek farklı bir URL'ye yönlendirir.
    RedisConnPoolTTL num[units] 15s skE
    TTL used for the connection pool with the Redis server(s)
    RedisTimeout num[units] 5s skE
    R/W timeout used for the connection with the Redis server(s)
    ReflectorHeader inputheader [outputheader]skdhT
    Reflect an input header to the output headers
    RegexDefaultOptions [none] [+|-]option [[+|-]option] ... DOTALL DOLLAR_ENDON +sÇ
    Allow to configure global/default options for regexes
    RegisterHttpMethod method [method [...]]sÇ
    Register non-standard HTTP methods
    RemoteIPHeader header-fieldskT
    Declare the header field which should be parsed for useragent IP addresses
    RemoteIPInternalProxy proxy-ip|proxy-ip/subnet|hostname ...skT
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPInternalProxyList filenameskT
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPProxiesHeader HeaderFieldNameskT
    Declare the header field which will record all intermediate IP addresses
    RemoteIPProxyProtocol On|OffskT
    Enable or disable PROXY protocol handling
    RemoteIPProxyProtocolExceptions host|range [host|range] [host|range]skT
    Disable processing of PROXY header for certain hosts or networks
    RemoteIPTrustedProxy proxy-ip|proxy-ip/subnet|hostname ...skT
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoteIPTrustedProxyList filenameskT
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoveCharset extension [extension] -...kdhT
    Removes any character set associations for a set of file +
    RedisConnPoolTTL num[units] 15s skE
    TTL used for the connection pool with the Redis server(s)
    RedisTimeout num[units] 5s skE
    R/W timeout used for the connection with the Redis server(s)
    ReflectorHeader inputheader [outputheader]skdhT
    Reflect an input header to the output headers
    RegexDefaultOptions [none] [+|-]option [[+|-]option] ... DOTALL DOLLAR_ENDON +sÇ
    Allow to configure global/default options for regexes
    RegisterHttpMethod method [method [...]]sÇ
    Register non-standard HTTP methods
    RemoteIPHeader header-fieldskT
    Declare the header field which should be parsed for useragent IP addresses
    RemoteIPInternalProxy proxy-ip|proxy-ip/subnet|hostname ...skT
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPInternalProxyList filenameskT
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPProxiesHeader HeaderFieldNameskT
    Declare the header field which will record all intermediate IP addresses
    RemoteIPProxyProtocol On|OffskT
    Enable or disable PROXY protocol handling
    RemoteIPProxyProtocolExceptions host|range [host|range] [host|range]skT
    Disable processing of PROXY header for certain hosts or networks
    RemoteIPTrustedProxy proxy-ip|proxy-ip/subnet|hostname ...skT
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoteIPTrustedProxyList filenameskT
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoveCharset extension [extension] +...kdhT
    Removes any character set associations for a set of file extensions
    RemoveEncoding extension [extension] -...kdhT
    Removes any content encoding associations for a set of file +
    RemoveEncoding extension [extension] +...kdhT
    Removes any content encoding associations for a set of file extensions
    RemoveHandler extension [extension] -...kdhT
    Removes any handler associations for a set of file +
    RemoveHandler extension [extension] +...kdhT
    Removes any handler associations for a set of file extensions
    RemoveInputFilter extension [extension] -...kdhT
    Removes any input filter associations for a set of file +
    RemoveInputFilter extension [extension] +...kdhT
    Removes any input filter associations for a set of file extensions
    RemoveLanguage extension [extension] -...kdhT
    Removes any language associations for a set of file +
    RemoveLanguage extension [extension] +...kdhT
    Removes any language associations for a set of file extensions
    RemoveOutputFilter extension [extension] -...kdhT
    Removes any output filter associations for a set of file +
    RemoveOutputFilter extension [extension] +...kdhT
    Removes any output filter associations for a set of file extensions
    RemoveType extension [extension] -...kdhT
    Removes any content type associations for a set of file +
    RemoveType extension [extension] +...kdhT
    Removes any content type associations for a set of file extensions
    RequestHeader add|append|edit|edit*|merge|set|setifempty|unset +
    RequestHeader add|append|edit|edit*|merge|set|setifempty|unset header [[expr=]value [replacement] [early|env=[!]varname|expr=expression]] -skdhE
    Configure HTTP request headers
    RequestReadTimeout +skdhE
    Configure HTTP request headers
    RequestReadTimeout [handshake=timeout[-maxtimeout][,MinRate=rate] [header=timeout[-maxtimeout][,MinRate=rate] [body=timeout[-maxtimeout][,MinRate=rate] - handshake=0 header= +skE
    Set timeout values for completing the TLS handshake, receiving + handshake=0 header= +skE
    Set timeout values for completing the TLS handshake, receiving the request headers and/or body from client.
    Require [not] entity-name - [entity-name] ...dhT
    Tests whether an authenticated user is authorized by +
    Require [not] entity-name + [entity-name] ...dhT
    Tests whether an authenticated user is authorized by an authorization provider.
    <RequireAll> ... </RequireAll>dhT
    Enclose a group of authorization directives of which none +
    <RequireAll> ... </RequireAll>dhT
    Enclose a group of authorization directives of which none must fail and at least one must succeed for the enclosing directive to succeed.
    <RequireAny> ... </RequireAny>dhT
    Enclose a group of authorization directives of which one +
    <RequireAny> ... </RequireAny>dhT
    Enclose a group of authorization directives of which one must succeed for the enclosing directive to succeed.
    <RequireNone> ... </RequireNone>dhT
    Enclose a group of authorization directives of which none +
    <RequireNone> ... </RequireNone>dhT
    Enclose a group of authorization directives of which none must succeed for the enclosing directive to not fail.
    RewriteBase URL-pathdhE
    Sets the base URL for per-directory rewrites
    RewriteCond - TestString [!]CondPattern [flags]skdhE
    Defines a condition under which rewriting will take place +
    RewriteBase URL-pathdhE
    Sets the base URL for per-directory rewrites
    RewriteCond + TestString [!]CondPattern [flags]skdhE
    Defines a condition under which rewriting will take place
    RewriteEngine on|off off skdhE
    Enables or disables runtime rewriting engine
    RewriteMap MapName MapType:MapSource +
    RewriteEngine on|off off skdhE
    Enables or disables runtime rewriting engine
    RewriteMap MapName MapType:MapSource [MapTypeOptions] -skE
    Defines a mapping function for key-lookup
    RewriteOptions OptionsskdhE
    Sets some special options for the rewrite engine
    RewriteRule - [!]Pattern Substitution [flags]skdhE
    Defines rules for the rewriting engine
    RLimitCPU saniye|max [saniye|max]skdhÇ
    Apache httpd alt süreçleri tarafından çalıştırılan süreçlerin +skE
    Defines a mapping function for key-lookup
    RewriteOptions OptionsskdhE
    Sets some special options for the rewrite engine
    RewriteRule + [!]Pattern Substitution [flags]skdhE
    Defines rules for the rewriting engine
    RLimitCPU saniye|max [saniye|max]skdhÇ
    Apache httpd alt süreçleri tarafından çalıştırılan süreçlerin işlemci tüketimine sınırlama getirir.
    RLimitMEM bayt-sayısı|max [bayt-sayısı|max] -skdhÇ
    Apache httpd alt süreçleri tarafından çalıştırılan süreçlerin +
    RLimitMEM bayt-sayısı|max [bayt-sayısı|max] +skdhÇ
    Apache httpd alt süreçleri tarafından çalıştırılan süreçlerin bellek tüketimine sınırlama getirir.
    RLimitNPROC sayı|max [sayı|max]skdhÇ
    Apache httpd alt süreçleri tarafından çalıştırılabilecek süreç +
    RLimitNPROC sayı|max [sayı|max]skdhÇ
    Apache httpd alt süreçleri tarafından çalıştırılabilecek süreç sayısına sınırlama getirir.
    Satisfy Any|All All dhE
    Interaction between host-level access control and +
    Satisfy Any|All All dhK
    Interaction between host-level access control and user authentication
    ScoreBoardFile dosya-yolu logs/apache_status sM
    Çocuk süreçler için eşgüdüm verisini saklamakta kullanılan +
    ScoreBoardFile dosya-yolu logs/apache_status sM
    Çocuk süreçler için eşgüdüm verisini saklamakta kullanılan dosyanın yerini belirler.
    Script method cgi-scriptskdT
    Activates a CGI script for a particular request +
    Script method cgi-scriptskdT
    Activates a CGI script for a particular request method.
    ScriptAlias URL-yolu -dosya-yolu|dizin-yoluskdT
    Bir URL'yi dosya sistemindeki bir yere eşler ve hedefi bir CGI betiği olarak çalıştırır.
    ScriptAliasMatch düzenli-ifade -dosya-yolu|dizin-yoluskT
    Bir URL'yi dosya sistemindeki bir yere düzenli ifade kullanarak +
    ScriptAlias URL-yolu +dosya-yolu|dizin-yoluskdT
    Bir URL'yi dosya sistemindeki bir yere eşler ve hedefi bir CGI betiği olarak çalıştırır.
    ScriptAliasMatch düzenli-ifade +dosya-yolu|dizin-yoluskT
    Bir URL'yi dosya sistemindeki bir yere düzenli ifade kullanarak eşler ve hedefi bir CGI betiği olarak çalıştırır.
    ScriptInterpreterSource Registry|Registry-Strict|Script Script skdhÇ
    CGI betikleri için yorumlayıcı belirleme tekniği
    ScriptLog file-pathskT
    Location of the CGI script error logfile
    ScriptLogBuffer bytes 1024 skT
    Maximum amount of PUT or POST requests that will be recorded +
    ScriptInterpreterSource Registry|Registry-Strict|Script Script skdhÇ
    CGI betikleri için yorumlayıcı belirleme tekniği
    ScriptLog file-pathskT
    Location of the CGI script error logfile
    ScriptLogBuffer bytes 1024 skT
    Maximum amount of PUT or POST requests that will be recorded in the scriptlog
    ScriptLogLength bytes 10385760 skT
    Size limit of the CGI script logfile
    ScriptSock file-path cgisock sT
    The filename prefix of the socket to use for communication with +
    ScriptLogLength bytes 10385760 skT
    Size limit of the CGI script logfile
    ScriptSock file-path cgisock sT
    The filename prefix of the socket to use for communication with the cgi daemon
    SecureListen [IP-address:]portnumber -Certificate-Name [MUTUAL]sT
    Enables SSL encryption for the specified port
    SeeRequestTail On|Off Off sÇ
    İsteğin 63 karakterden büyük olduğu varsayımıyla, mod_status'un +
    SecureListen [IP-address:]portnumber +Certificate-Name [MUTUAL]sT
    Enables SSL encryption for the specified port
    SeeRequestTail On|Off Off sÇ
    İsteğin 63 karakterden büyük olduğu varsayımıyla, mod_status'un ilk 63 karakteri mi yoksa son 63 karakteri mi göstereceğini belirler.
    SendBufferSize bayt-sayısı 0 sM
    TCP tamponu boyu
    ServerAdmin eposta-adresi|URLskÇ
    Sunucunun hata iletilerinde istemciye göstereceği eposta adresi +
    SendBufferSize bayt-sayısı 0 sM
    TCP tamponu boyu
    ServerAdmin eposta-adresi|URLskÇ
    Sunucunun hata iletilerinde istemciye göstereceği eposta adresi
    ServerAlias konakadı [konakadı] ...kÇ
    İstekleri isme dayalı sanal konaklarla eşleştirilirken +
    ServerAlias konakadı [konakadı] ...kÇ
    İstekleri isme dayalı sanal konaklarla eşleştirilirken kullanılacak konak adları için başka isimler belirtebilmeyi sağlar.
    ServerLimit sayısM
    Ayarlanabilir süreç sayısının üst sınırını belirler.
    ServerName [şema://]tam-nitelenmiş-alan-adı[:port] -skÇ
    Sunucunun özdeşleşeceği konak ismi ve port.
    ServerPath URL-yolukÇ
    Uyumsuz bir tarayıcı tarafından erişilmesi için bir isme dayalı sanal konak için meşru URL yolu
    ServerRoot dizin-yolu /usr/local/apache sÇ
    Sunucu yapılandırması için kök dizin
    ServerSignature On|Off|EMail Off skdhÇ
    Sunucu tarafından üretilen belgelerin dipnotunu ayarlar. +
    ServerLimit sayısM
    Ayarlanabilir süreç sayısının üst sınırını belirler.
    ServerName [şema://]tam-nitelenmiş-alan-adı[:port] +skÇ
    Sunucunun özdeşleşeceği konak ismi ve port.
    ServerPath URL-yolukÇ
    Uyumsuz bir tarayıcı tarafından erişilmesi için bir isme dayalı sanal konak için meşru URL yolu
    ServerRoot dizin-yolu /usr/local/apache sÇ
    Sunucu yapılandırması için kök dizin
    ServerSignature On|Off|EMail Off skdhÇ
    Sunucu tarafından üretilen belgelerin dipnotunu ayarlar.
    ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full Full sÇ
    Server HTTP yanıt başlığını yapılandırır. +
    ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full Full sÇ
    Server HTTP yanıt başlığını yapılandırır.
    Session On|Off Off skdhE
    Enables a session for the current directory or location
    SessionCookieMaxAge On|Off On skdhE
    Control whether session cookies have Max-Age transmitted to the client
    SessionCookieName name attributesskdhE
    Name and attributes for the RFC2109 cookie storing the session
    SessionCookieName2 name attributesskdhE
    Name and attributes for the RFC2965 cookie storing the session
    SessionCookieRemove On|Off Off skdhE
    Control for whether session cookies should be removed from incoming HTTP headers
    SessionCryptoCipher name aes256 skdhD
    The crypto cipher to be used to encrypt the session
    SessionCryptoDriver name [param[=value]]sD
    The crypto driver to be used to encrypt the session
    SessionCryptoPassphrase secret [ secret ... ] skdhD
    The key used to encrypt the session
    SessionCryptoPassphraseFile filenameskdD
    File containing keys used to encrypt the session
    SessionDBDCookieName name attributesskdhE
    Name and attributes for the RFC2109 cookie storing the session ID
    SessionDBDCookieName2 name attributesskdhE
    Name and attributes for the RFC2965 cookie storing the session ID
    SessionDBDCookieRemove On|Off On skdhE
    Control for whether session ID cookies should be removed from incoming HTTP headers
    SessionDBDDeleteLabel label deletesession skdhE
    The SQL query to use to remove sessions from the database
    SessionDBDInsertLabel label insertsession skdhE
    The SQL query to use to insert sessions into the database
    SessionDBDPerUser On|Off Off skdhE
    Enable a per user session
    SessionDBDSelectLabel label selectsession skdhE
    The SQL query to use to select sessions from the database
    SessionDBDUpdateLabel label updatesession skdhE
    The SQL query to use to update existing sessions in the database
    SessionEnv On|Off Off skdhE
    Control whether the contents of the session are written to the +
    Session On|Off Off skdhE
    Enables a session for the current directory or location
    SessionCookieMaxAge On|Off On skdhE
    Control whether session cookies have Max-Age transmitted to the client
    SessionCookieName name attributesskdhE
    Name and attributes for the RFC2109 cookie storing the session
    SessionCookieName2 name attributesskdhE
    Name and attributes for the RFC2965 cookie storing the session
    SessionCookieRemove On|Off Off skdhE
    Control for whether session cookies should be removed from incoming HTTP headers
    SessionCryptoCipher name aes256 skdhD
    The crypto cipher to be used to encrypt the session
    SessionCryptoDriver name [param[=value]]sD
    The crypto driver to be used to encrypt the session
    SessionCryptoPassphrase secret [ secret ... ] skdhD
    The key used to encrypt the session
    SessionCryptoPassphraseFile filenameskdD
    File containing keys used to encrypt the session
    SessionDBDCookieName name attributesskdhE
    Name and attributes for the RFC2109 cookie storing the session ID
    SessionDBDCookieName2 name attributesskdhE
    Name and attributes for the RFC2965 cookie storing the session ID
    SessionDBDCookieRemove On|Off On skdhE
    Control for whether session ID cookies should be removed from incoming HTTP headers
    SessionDBDDeleteLabel label deletesession skdhE
    The SQL query to use to remove sessions from the database
    SessionDBDInsertLabel label insertsession skdhE
    The SQL query to use to insert sessions into the database
    SessionDBDPerUser On|Off Off skdhE
    Enable a per user session
    SessionDBDSelectLabel label selectsession skdhE
    The SQL query to use to select sessions from the database
    SessionDBDUpdateLabel label updatesession skdhE
    The SQL query to use to update existing sessions in the database
    SessionEnv On|Off Off skdhE
    Control whether the contents of the session are written to the HTTP_SESSION environment variable
    SessionExclude pathskdhE
    Define URL prefixes for which a session is ignored
    SessionExpiryUpdateInterval interval 0 (always update) skdhE
    Define the number of seconds a session's expiry may change without +
    SessionExclude pathskdhE
    Define URL prefixes for which a session is ignored
    SessionExpiryUpdateInterval interval 0 (always update) skdhE
    Define the number of seconds a session's expiry may change without the session being updated
    SessionHeader headerskdhE
    Import session updates from a given HTTP response header
    SessionInclude pathskdhE
    Define URL prefixes for which a session is valid
    SessionMaxAge maxage 0 skdhE
    Define a maximum age in seconds for a session
    SetEnv ortam-değişkeni değerskdhT
    Ortam değişkenlerini tanımlar.
    SetEnvIf öznitelik +
    SessionHeader headerskdhE
    Import session updates from a given HTTP response header
    SessionInclude pathskdhE
    Define URL prefixes for which a session is valid
    SessionMaxAge maxage 0 skdhE
    Define a maximum age in seconds for a session
    SetEnv ortam-değişkeni değerskdhT
    Ortam değişkenlerini tanımlar.
    SetEnvIf öznitelik düzifd [!]ort-değişkeni[=değer] - [[!]ort-değişkeni[=değer]] ...skdhT
    Ortam değişkenlerini isteğin özniteliklerine göre atar. + [[!]ort-değişkeni[=değer]] ...skdhT
    Ortam değişkenlerini isteğin özniteliklerine göre atar.
    SetEnvIfExpr ifade +
    SetEnvIfExpr ifade [!]ort-değişkeni[=değer] - [[!]ort-değişkeni[=değer]] ...skdhT
    Bir ap_expr ifadesine dayanarak ortam değişkenlerine değer atar
    SetEnvIfNoCase öznitelik + [[!]ort-değişkeni[=değer]] ...skdhT
    Bir ap_expr ifadesine dayanarak ortam değişkenlerine değer atar
    SetEnvIfNoCase öznitelik düzifd [!]ort-değişkeni[=değer] - [[!]ort-değişkeni[=değer]] ...skdhT
    Ortam değişkenlerini isteğin özniteliklerinde harf büyüklüğüne + [[!]ort-değişkeni[=değer]] ...skdhT
    Ortam değişkenlerini isteğin özniteliklerinde harf büyüklüğüne bağlı olmaksızın yapılmış tanımlara göre atar.
    SetHandler eylemci-ismi|NoneskdhÇ
    Eşleşen tüm dosyaların belli bir eylemci tarafından işlenmesine +
    SetHandler eylemci-ismi|NoneskdhÇ
    Eşleşen tüm dosyaların belli bir eylemci tarafından işlenmesine sebep olur.
    SetInputFilter süzgeç[;süzgeç...]skdhÇ
    POST girdilerini ve istemci isteklerini işleyecek süzgeçleri +
    SetInputFilter süzgeç[;süzgeç...]skdhÇ
    POST girdilerini ve istemci isteklerini işleyecek süzgeçleri belirler.
    SetOutputFilter süzgeç[;süzgeç...]skdhÇ
    Sunucunun yanıtlarını işleyecek süzgeçleri belirler.
    SSIEndTag tag "-->" skT
    String that ends an include element
    SSIErrorMsg message "[an error occurred +skdhT
    Error message displayed when there is an SSI +
    SetOutputFilter süzgeç[;süzgeç...]skdhÇ
    Sunucunun yanıtlarını işleyecek süzgeçleri belirler.
    SSIEndTag tag "-->" skT
    String that ends an include element
    SSIErrorMsg message "[an error occurred +skdhT
    Error message displayed when there is an SSI error
    SSIETag on|off off dhT
    Controls whether ETags are generated by the server.
    SSILastModified on|off off dhT
    Controls whether Last-Modified headers are generated by the +
    SSIETag on|off off dhT
    Controls whether ETags are generated by the server.
    SSILastModified on|off off dhT
    Controls whether Last-Modified headers are generated by the server.
    SSILegacyExprParser on|off off dhT
    Enable compatibility mode for conditional expressions.
    SSIStartTag tag "<!--#" skT
    String that starts an include element
    SSITimeFormat formatstring "%A, %d-%b-%Y %H:%M +skdhT
    Configures the format in which date strings are +
    SSILegacyExprParser on|off off dhT
    Enable compatibility mode for conditional expressions.
    SSIStartTag tag "<!--#" skT
    String that starts an include element
    SSITimeFormat formatstring "%A, %d-%b-%Y %H:%M +skdhT
    Configures the format in which date strings are displayed
    SSIUndefinedEcho string "(none)" skdhT
    String displayed when an unset variable is echoed
    SSLCACertificateFile file-pathskE
    File of concatenated PEM-encoded CA Certificates +
    SSIUndefinedEcho string "(none)" skdhT
    String displayed when an unset variable is echoed
    SSLCACertificateFile file-pathskE
    File of concatenated PEM-encoded CA Certificates for Client Auth
    SSLCACertificatePath directory-pathskE
    Directory of PEM-encoded CA Certificates for +
    SSLCACertificatePath directory-pathskE
    Directory of PEM-encoded CA Certificates for Client Auth
    SSLCACertificateURI uriskE
    Server CA certificate store for Client Authentication
    SSLCADNRequestFile file-pathskE
    File of concatenated PEM-encoded CA Certificates for defining acceptable CA names
    SSLCADNRequestPath directory-pathskE
    Directory of PEM-encoded CA Certificates for defining acceptable CA names
    SSLCARevocationCheck chain|leaf|none [flags ...] none skE
    Enable CRL-based revocation checking
    SSLCARevocationFile file-pathskE
    File of concatenated PEM-encoded CA CRLs for +
    SSLCADNRequestURI uriskE
    certificate store of CA Certificates for defining +acceptable CA names
    SSLCARevocationCheck chain|leaf|none [flags ...] none skE
    Enable CRL-based revocation checking
    SSLCARevocationFile file-pathskE
    File of concatenated PEM-encoded CA CRLs for Client Auth
    SSLCARevocationPath directory-pathskE
    Directory of PEM-encoded CA CRLs for +
    SSLCARevocationPath directory-pathskE
    Directory of PEM-encoded CA CRLs for Client Auth
    SSLCARevocationURI uriskE
    Server CA certificate revocation list store for Client Authentication
    SSLCertificateChainFile file-pathskE
    File of PEM-encoded Server CA Certificates
    SSLCertificateFile file-path|certidskE
    Server PEM-encoded X.509 certificate data file or token identifier
    SSLCertificateKeyFile file-path|keyidskE
    Server PEM-encoded private key file
    SSLCipherSuite [protocol] cipher-spec DEFAULT (depends on +skdhE
    Cipher Suite available for negotiation in SSL +
    SSLCertificateURI uriskE
    Server certificate and key store
    SSLCipherSuite [protocol] cipher-spec DEFAULT (depends on +skdhE
    Cipher Suite available for negotiation in SSL handshake
    SSLClientHelloVars on|off off skE
    Enable collection of ClientHello variables
    SSLCompression on|off off skE
    Enable compression on the SSL level
    SSLCryptoDevice engine builtin sE
    Enable use of a cryptographic hardware accelerator
    SSLECHKeyDir dirnamesE
    Load the set of Encrypted Client Hello (ECH) PEM files in the named directory
    SSLEngine on|off off skE
    SSL Engine Operation Switch
    SSLFIPS on|off off sE
    SSL FIPS mode Switch
    SSLHonorCipherOrder on|off off skE
    Option to prefer the server's cipher preference order
    SSLOCSPDefaultResponder uriskE
    Set the default responder URI for OCSP validation
    SSLOCSPEnable on|leaf|off [flags] off skE
    Enable OCSP validation of the client certificate chain
    SSLOCSPNoverify on|off off skE
    skip the OCSP responder certificates verification
    SSLOCSPOverrideResponder on|off off skE
    Force use of the default responder URI for OCSP validation
    SSLOCSPProxyURL urlskE
    Proxy URL to use for OCSP requests
    SSLOCSPResponderCertificateFile fileskE
    Set of trusted PEM encoded OCSP responder certificates
    SSLOCSPResponderTimeout seconds 10 skE
    Timeout for OCSP queries
    SSLOCSPResponseMaxAge seconds -1 skE
    Maximum allowable age for OCSP responses
    SSLOCSPResponseTimeSkew seconds 300 skE
    Maximum allowable time skew for OCSP response validation
    SSLOCSPUseRequestNonce on|off on skE
    Use a nonce within OCSP queries
    SSLOpenSSLConfCmd command-name command-valueskE
    Configure OpenSSL parameters through its SSL_CONF API
    SSLOptions [+|-]option ...skdhE
    Configure various SSL engine run-time options
    SSLPassPhraseDialog type builtin sE
    Type of pass phrase dialog for encrypted private +
    SSLClientHelloVars on|off off skE
    Enable collection of ClientHello variables
    SSLCompression on|off off skE
    Enable compression on the SSL level
    SSLCryptoDevice engine builtin sE
    Enable use of a cryptographic hardware accelerator
    SSLECHKeyDir dirnamesE
    Load the set of Encrypted Client Hello (ECH) PEM files in the named directory
    SSLEngine on|off off skE
    SSL Engine Operation Switch
    SSLFIPS on|off off sE
    SSL FIPS mode Switch
    SSLHonorCipherOrder on|off off skE
    Option to prefer the server's cipher preference order
    SSLOCSPDefaultResponder uriskE
    Set the default responder URI for OCSP validation
    SSLOCSPEnable on|leaf|off [flags] off skE
    Enable OCSP validation of the client certificate chain
    SSLOCSPNoverify on|off off skE
    skip the OCSP responder certificates verification
    SSLOCSPOverrideResponder on|off off skE
    Force use of the default responder URI for OCSP validation
    SSLOCSPProxyURL urlskE
    Proxy URL to use for OCSP requests
    SSLOCSPResponderCertificateFile fileskE
    Set of trusted PEM encoded OCSP responder certificates
    SSLOCSPResponderTimeout seconds 10 skE
    Timeout for OCSP queries
    SSLOCSPResponseMaxAge seconds -1 skE
    Maximum allowable age for OCSP responses
    SSLOCSPResponseTimeSkew seconds 300 skE
    Maximum allowable time skew for OCSP response validation
    SSLOCSPUseRequestNonce on|off on skE
    Use a nonce within OCSP queries
    SSLOpenSSLConfCmd command-name command-valueskE
    Configure OpenSSL parameters through its SSL_CONF API
    SSLOptions [+|-]option ...skdhE
    Configure various SSL engine run-time options
    SSLPassPhraseDialog type builtin sE
    Type of pass phrase dialog for encrypted private keys
    SSLPolicy nameskE
    Apply a SSLPolicy by name
    SSLProtocol [+|-]protocol ... all -SSLv3 skE
    Configure usable SSL/TLS protocol versions
    SSLProxyCACertificateFile file-pathskE
    File of concatenated PEM-encoded CA Certificates +
    SSLPolicy nameskE
    Apply a SSLPolicy by name
    SSLProtocol [+|-]protocol ... all -SSLv3 skE
    Configure usable SSL/TLS protocol versions
    SSLProxyCACertificateFile file-pathskE
    File of concatenated PEM-encoded CA Certificates for Remote Server Auth
    SSLProxyCACertificatePath directory-pathskE
    Directory of PEM-encoded CA Certificates for +
    SSLProxyCACertificatePath directory-pathskE
    Directory of PEM-encoded CA Certificates for Remote Server Auth
    SSLProxyCACertificateURI uriskE
    Proxy CA certificate store for Remote Server Auth
    SSLProxyCARevocationCheck chain|leaf|none none skE
    Enable CRL-based revocation checking for Remote Server Auth
    SSLProxyCARevocationFile file-pathskE
    File of concatenated PEM-encoded CA CRLs for Remote Server Auth
    SSLProxyCARevocationPath directory-pathskE
    Directory of PEM-encoded CA CRLs for Remote Server Auth
    SSLProxyCheckPeerCN on|off on skE
    Whether to check the remote server certificate's CN field +
    SSLProxyCARevocationURI uriskE
    Proxy CA certificate revocation list store for Remote Server Auth
    SSLProxyCheckPeerCN on|off on skE
    Whether to check the remote server certificate's CN field
    SSLProxyCheckPeerExpire on|off on skE
    Whether to check if remote server certificate is expired +
    SSLProxyCheckPeerExpire on|off on skE
    Whether to check if remote server certificate is expired
    SSLProxyCheckPeerName on|off on skE
    Configure host name checking for remote server certificates +
    SSLProxyCheckPeerName on|off on skE
    Configure host name checking for remote server certificates
    SSLProxyCipherSuite [protocol] cipher-spec ALL:!ADH:RC4+RSA:+H +skE
    Cipher Suite available for negotiation in SSL +
    SSLProxyCipherSuite [protocol] cipher-spec ALL:!ADH:RC4+RSA:+H +skE
    Cipher Suite available for negotiation in SSL proxy handshake
    SSLProxyEngine on|off off skE
    SSL Proxy Engine Operation Switch
    SSLProxyMachineCertificateChainFile filenameskE
    File of concatenated PEM-encoded CA certificates to be used by the proxy for choosing a certificate
    SSLProxyMachineCertificateFile filenameskE
    File of concatenated PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificatePath directoryskE
    Directory of PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyEngine on|off off skE
    SSL Proxy Engine Operation Switch
    SSLProxyMachineCertificateChainFile filenameskE
    File of concatenated PEM-encoded CA certificates to be used by the proxy for choosing a certificate
    SSLProxyMachineCertificateFile filenameskE
    File of concatenated PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificatePath directoryskE
    Directory of PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificateURI uriskE
    Proxy certificate and key stores
    SSLProxyProtocol [+|-]protocol ... all -SSLv3 skE
    Configure usable SSL protocol flavors for proxy usage
    SSLProxyVerify level none skE
    Type of remote server Certificate verification
    SSLProxyVerifyDepth number 1 skE
    Maximum depth of CA Certificates in Remote Server @@ -1302,15 +1311,15 @@ gerçekleşmesi için sunucunun geçmesini bekleyeceği sü
    User unix-kullanıcısı #-1 sT
    İsteklere yanıt verecek sunucunun ait olacağı kullanıcıyı belirler.
    UserDir dizin [dizin] ...skT
    Kullanıcıya özel dizinlerin yeri
    VHostCGIMode On|Off|Secure On kD
    Determines whether the virtualhost can run +
    VHostCGIMode On|Off|Secure On kK
    Determines whether the virtualhost can run subprocesses, and the privileges available to subprocesses.
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...kD
    Assign arbitrary privileges to subprocesses created +
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...kK
    Assign arbitrary privileges to subprocesses created by a virtual host.
    VHostGroup unix-groupidkD
    Sets the Group ID under which a virtual host runs.
    VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...kD
    Assign arbitrary privileges to a virtual host.
    VHostSecure On|Off On kD
    Determines whether the server runs with enhanced security +
    VHostGroup unix-groupidkK
    Sets the Group ID under which a virtual host runs.
    VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...kK
    Assign arbitrary privileges to a virtual host.
    VHostSecure On|Off On kK
    Determines whether the server runs with enhanced security for the virtualhost.
    VHostUser unix-useridkD
    Sets the User ID under which a virtual host runs.
    VHostUser unix-useridkK
    Sets the User ID under which a virtual host runs.
    VirtualDocumentRoot hesaplanan-dizin|none none skE
    Bir sanal konağın belge kök dizinini devingen olarak yapılandırır.
    VirtualDocumentRootIP hesaplanan-dizin|none none skE
    Bir sanal konağın belge kök dizinini devingen olarak yapılandırır. diff --git a/docs/manual/mod/quickreference.html.zh-cn.utf8 b/docs/manual/mod/quickreference.html.zh-cn.utf8 index fb904577c2..6d12b27beb 100644 --- a/docs/manual/mod/quickreference.html.zh-cn.utf8 +++ b/docs/manual/mod/quickreference.html.zh-cn.utf8 @@ -118,7 +118,7 @@ type
    AliasPreservePath OFF|ON OFF svdB
    Map the full path after the alias in a location.
    Allow from all|host|env=[!]env-variable -[host|env=[!]env-variable] ...dhE
    Controls which hosts can access an area of the +[host|env=[!]env-variable] ...dh
    Controls which hosts can access an area of the server
    AllowCONNECT port[-port] [port[-port]] ... | None 443 563 svE
    Ports that are allowed to CONNECT through the @@ -384,20 +384,20 @@ switch before dumping core
    CryptoIV value none svdhE
    IV (Initialization Vector) to be used by the crypto filter
    CryptoKey value none svdhE
    Key to be used by the crypto filter
    CryptoSize integer 131072 svdhE
    Maximum size in bytes to buffer by the crypto filter
    CTAuditStorage directorysE
    Existing directory where data for off-line audit will be stored
    CTLogClient executablesE
    Location of certificate-transparency log client tool
    CTLogConfigDB filenamesE
    Log configuration database supporting dynamic updates
    CTMaxSCTAge num-secondssE
    Maximum age of SCT obtained from a log, before it will be +
    CTAuditStorage directorys
    Existing directory where data for off-line audit will be stored
    CTLogClient executables
    Location of certificate-transparency log client tool
    CTLogConfigDB filenames
    Log configuration database supporting dynamic updates
    CTMaxSCTAge num-secondss
    Maximum age of SCT obtained from a log, before it will be refreshed
    CTProxyAwareness oblivious|aware|requiresvE
    Level of CT awareness and enforcement for a proxy +
    CTProxyAwareness oblivious|aware|requiresv
    Level of CT awareness and enforcement for a proxy
    CTSCTStorage directorysE
    Existing directory where SCTs are managed
    CTServerHelloSCTLimit limitsE
    Limit on number of SCTs that can be returned in +
    CTSCTStorage directorys
    Existing directory where SCTs are managed
    CTServerHelloSCTLimit limits
    Limit on number of SCTs that can be returned in ServerHello
    CTStaticLogConfig log-id|- public-key-file|- 1|0|- min-timestamp|- max-timestamp|- -log-URL|-sE
    Static configuration of information about a log
    CTStaticSCTs certificate-pem-file sct-directorysE
    Static configuration of one or more SCTs for a server certificate +log-URL|-s
    Static configuration of information about a log
    CTStaticSCTs certificate-pem-file sct-directorys
    Static configuration of one or more SCTs for a server certificate
    CustomLog file|pipe|provider format|nickname @@ -449,7 +449,7 @@ which no other media type configuration could be found.
    DeflateMemLevel value 9 svE
    How much memory should be used by zlib for compression
    DeflateWindowSize value 15 svE
    Zlib compression window size
    Deny from all|host|env=[!]env-variable -[host|env=[!]env-variable] ...dhE
    Controls which hosts are denied access to the +[host|env=[!]env-variable] ...dh
    Controls which hosts are denied access to the server
    <Directory directory-path> ... </Directory>svC
    Enclose a group of directives that apply only to the @@ -468,7 +468,7 @@ the contents of file-system directories matching a regular expression.
    DirectorySlash On|Off|NotFound On svdhB
    Toggle trailing slash redirects on or off
    DocumentRoot directory-path "/usr/local/apache/ +svC
    Directory that forms the main document tree visible from the web
    DTracePrivileges On|Off Off sX
    Determines whether the privileges required by dtrace are enabled.
    DTracePrivileges On|Off Off s
    Determines whether the privileges required by dtrace are enabled.
    DumpIOInput On|Off Off sE
    Dump all input data to the error log
    DumpIOOutput On|Off Off sE
    Dump all output data to the error log
    <Else> ... </Else>svdhC
    Contains directives that apply only if the condition of a @@ -604,10 +604,10 @@ presence or absence of a specific module
    <IfVersion [[!]operator] version> ... </IfVersion>svdhE
    contains version dependent configuration
    ImapBase map|referer|URL http://servername/ svdhB
    Default base for imagemap files
    ImapDefault error|nocontent|map|referer|URL nocontent svdhB
    Default action when an imagemap is called with coordinates +
    ImapBase map|referer|URL http://servername/ svdh
    Default base for imagemap files
    ImapDefault error|nocontent|map|referer|URL nocontent svdh
    Default action when an imagemap is called with coordinates that are not explicitly mapped
    ImapMenu none|formatted|semiformatted|unformatted formatted svdhB
    Action if no coordinates are given when calling +
    ImapMenu none|formatted|semiformatted|unformatted formatted svdh
    Action if no coordinates are given when calling an imagemap
    Include file-path|directory-path|wildcardsvdC
    Includes other configuration files from within the server configuration files
    MDDriveMode always|auto|manual auto sX
    former name of MDRenewMode.
    MDExternalAccountBinding key-id hmac-64 | none | file none sX
    Set the external account binding keyid and hmac values to use at CA
    MDHttpProxy urlsX
    Define a proxy for outgoing connections.
    MDInitialDelay duration 0s sX
    How long to delay the first certificate check.
    MDMatchNames all|servernames all sX
    Determines how DNS names are matched to vhosts
    MDMember hostnamesX
    Additional hostname for the managed domain.
    MDMembers auto|manual auto sX
    Control if the alias domain names are automatically added.
    MDMessageCmd path-to-cmd optional-argssX
    Handle events for Manage Domains
    MDMustStaple on|off off sX
    Control if new certificates carry the OCSP Must Staple flag.
    MDNotifyCmd path [ args ]sX
    Run a program when a Managed Domain is ready.
    MDomain dns-name [ other-dns-name... ] [auto|manual]sX
    Define list of domain names that belong to one group.
    <MDomainSet dns-name [ other-dns-name... ]>...</MDomainSet>sX
    Container for directives applied to the same managed domains.
    MDPortMap map1 [ map2 ] http:80 https:443 sX
    Map external to internal ports for domain ownership verification.
    MDPrivateKeys type [ params... ] RSA 2048 sX
    Set type and size of the private keys generated.
    MDProfile namesX
    Use a specific ACME profile from the CA
    MDProfileMandatory on|off off sX
    Control if an MDProfile is mandatory.
    MDRenewMode always|auto|manual auto sX
    Controls if certificates shall be renewed.
    MDRenewViaARI on|off on sX
    usage of the ACME ARI extension (rfc9773).
    MDRenewWindow duration 33% sX
    Control when a certificate will be renewed.
    MDRequireHttps off|temporary|permanent off sX
    Redirects http: traffic to https: for Managed Domains.
    MDRetryDelay duration 30s sX
    Time length for first retry, doubled on every consecutive error.
    MDRetryFailover number 13 sX
    The number of errors before a failover to another CA is triggered
    MDServerStatus on|off off sX
    Control if Managed Domain information is added to server-status.
    MDStapleOthers on|off on sX
    Enable stapling for certificates not managed by mod_md.
    MDStapling on|off off sX
    Enable stapling for all or a particular MDomain.
    MDStaplingKeepResponse duration 7d sX
    Controls when old responses should be removed.
    MDStaplingRenewWindow duration 33% sX
    Control when the stapling responses will be renewed.
    MDStoreDir path md sX
    Path on the local file system to store the Managed Domains data.
    MDStoreLocks on|off|duration off sX
    Configure locking of store for updates
    MDWarnWindow duration 10% sX
    Define the time window when you want to be warned about an expiring certificate.
    MemcacheConnTTL num[units] 15s svE
    Keepalive time for idle connections
    MergeSlashes ON|OFF ON svC
    Controls whether the server merges consecutive slashes in URLs. +
    MDHttpProxyCACertificateFile path-to-pem-file none sX
    Sets the root (CA) certificates to use for TLS connections to the http-proxy.
    MDInitialDelay duration 0s sX
    How long to delay the first certificate check.
    MDMatchNames all|servernames all sX
    Determines how DNS names are matched to vhosts
    MDMember hostnamesX
    Additional hostname for the managed domain.
    MDMembers auto|manual auto sX
    Control if the alias domain names are automatically added.
    MDMessageCmd path-to-cmd optional-argssX
    Handle events for Manage Domains
    MDMustStaple on|off off sX
    Control if new certificates carry the OCSP Must Staple flag.
    MDNotifyCmd path [ args ]sX
    Run a program when a Managed Domain is ready.
    MDomain dns-name [ other-dns-name... ] [auto|manual]sX
    Define list of domain names that belong to one group.
    <MDomainSet dns-name [ other-dns-name... ]>...</MDomainSet>sX
    Container for directives applied to the same managed domains.
    MDPortMap map1 [ map2 ] http:80 https:443 sX
    Map external to internal ports for domain ownership verification.
    MDPrivateKeys type [ params... ] RSA 2048 sX
    Set type and size of the private keys generated.
    MDProfile namesX
    Use a specific ACME profile from the CA
    MDProfileMandatory on|off off sX
    Control if an MDProfile is mandatory.
    MDRenewMode always|auto|manual auto sX
    Controls if certificates shall be renewed.
    MDRenewViaARI on|off on sX
    usage of the ACME ARI extension (rfc9773).
    MDRenewWindow duration 33% sX
    Control when a certificate will be renewed.
    MDRequireHttps off|temporary|permanent off sX
    Redirects http: traffic to https: for Managed Domains.
    MDRetryDelay duration 30s sX
    Time length for first retry, doubled on every consecutive error.
    MDRetryFailover number 13 sX
    The number of errors before a failover to another CA is triggered
    MDServerStatus on|off off sX
    Control if Managed Domain information is added to server-status.
    MDStapleOthers on|off on sX
    Enable stapling for certificates not managed by mod_md.
    MDStapling on|off off sX
    Enable stapling for all or a particular MDomain.
    MDStaplingKeepResponse duration 7d sX
    Controls when old responses should be removed.
    MDStaplingRenewWindow duration 33% sX
    Control when the stapling responses will be renewed.
    MDStoreDir path md sX
    Path on the local file system to store the Managed Domains data.
    MDStoreLocks on|off|duration off sX
    Configure locking of store for updates
    MDWarnWindow duration 10% sX
    Define the time window when you want to be warned about an expiring certificate.
    MemcacheConnTTL num[units] 15s svE
    Keepalive time for idle connections
    MergeSlashes ON|OFF ON svC
    Controls whether the server merges consecutive slashes in URLs.
    MergeTrailers [on|off] off svC
    Determines whether trailers are merged into headers
    MetaDir directory .web svdhE
    Name of the directory to find CERN-style meta information +
    MergeTrailers [on|off] off svC
    Determines whether trailers are merged into headers
    MetaDir directory .web svdh
    Name of the directory to find CERN-style meta information files
    MetaFiles on|off off svdhE
    Activates CERN meta-file processing
    MetaSuffix suffix .meta svdhE
    File name suffix for the file containing CERN-style +
    MetaFiles on|off off svdh
    Activates CERN meta-file processing
    MetaSuffix suffix .meta svdh
    File name suffix for the file containing CERN-style meta information
    MimeMagicDecompression On|Off Off svE
    Enable decompression of compressed files for MIME type detection
    MimeMagicFile file-pathsvE
    Enable MIME-type determination based on file contents +
    MimeMagicDecompression On|Off Off svE
    Enable decompression of compressed files for MIME type detection
    MimeMagicFile file-pathsvE
    Enable MIME-type determination based on file contents using the specified magic file
    MimeOptions option [option] ...svdhB
    Configures mod_mime behavior
    MinSpareServers number 5 sM
    Minimum number of idle child server processes
    MinSpareThreads numbersM
    Minimum number of idle threads available to handle request +
    MimeOptions option [option] ...svdhB
    Configures mod_mime behavior
    MinSpareServers number 5 sM
    Minimum number of idle child server processes
    MinSpareThreads numbersM
    Minimum number of idle threads available to handle request spikes
    MMapFile file-path [file-path] ...sX
    Map a list of files into memory at startup time
    ModemStandard V.21|V.26bis|V.32|V.34|V.92dX
    Modem standard to simulate
    ModMimeUsePathInfo On|Off Off dB
    Tells mod_mime to treat path_info +
    MMapFile file-path [file-path] ...sX
    Map a list of files into memory at startup time
    ModemStandard V.21|V.26bis|V.32|V.34|V.92dX
    Modem standard to simulate
    ModMimeUsePathInfo On|Off Off dB
    Tells mod_mime to treat path_info components as part of the filename
    MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers -[Handlers|Filters] NegotiatedOnly svdhB
    The types of files that will be included when searching for +
    MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers +[Handlers|Filters] NegotiatedOnly svdhB
    The types of files that will be included when searching for a matching file with MultiViews
    Mutex mechanism [default|mutex-name] ... [OmitPID] default sC
    Configures mutex mechanism and lock file directory for all +
    Mutex mechanism [default|mutex-name] ... [OmitPID] default sC
    Configures mutex mechanism and lock file directory for all or specified mutexes
    NameVirtualHost addr[:port]sC
    DEPRECATED: Designates an IP address for name-virtual +
    NameVirtualHost addr[:port]sC
    DEPRECATED: Designates an IP address for name-virtual hosting
    NoProxy host [host] ...svE
    Hosts, domains, or networks that will be connected to +
    NoProxy host [host] ...svE
    Hosts, domains, or networks that will be connected to directly
    NWSSLTrustedCerts filename [filename] ...sB
    List of additional client certificates
    NWSSLUpgradeable [IP-address:]portnumbersB
    Allows a connection to be upgraded to an SSL connection upon request
    Options - [+|-]option [[+|-]option] ... FollowSymlinks svdhC
    Configures what features are available in a particular +
    NWSSLTrustedCerts filename [filename] ...sB
    List of additional client certificates
    NWSSLUpgradeable [IP-address:]portnumbersB
    Allows a connection to be upgraded to an SSL connection upon request
    Options + [+|-]option [[+|-]option] ... FollowSymlinks svdhC
    Configures what features are available in a particular directory
    Order ordering Deny,Allow dhE
    Controls the default access state and the order in which +
    Order ordering Deny,Allow dh
    Controls the default access state and the order in which Allow and Deny are evaluated.
    OutputSed sed-commanddhX
    Sed command for filtering response content
    PassEnv env-variable [env-variable] -...svdhB
    Passes environment variables from the shell
    PidFile filename httpd.pid sM
    File where the server records the process ID +
    OutputSed sed-commanddhX
    Sed command for filtering response content
    PassEnv env-variable [env-variable] +...svdhB
    Passes environment variables from the shell
    PidFile filename httpd.pid sM
    File where the server records the process ID of the daemon
    PolicyConditional ignore|log|enforcesvdE
    Enable the conditional request policy.
    PolicyConditionalURL urlsvdE
    URL describing the conditional request policy.
    PolicyEnvironment variable log-value ignore-valuesvdE
    Override policies based on an environment variable.
    PolicyFilter on|offsvdE
    Enable or disable policies for the given URL space.
    PolicyKeepalive ignore|log|enforcesvdE
    Enable the keepalive policy.
    PolicyKeepaliveURL urlsvdE
    URL describing the keepalive policy.
    PolicyLength ignore|log|enforcesvdE
    Enable the content length policy.
    PolicyLengthURL urlsvdE
    URL describing the content length policy.
    PolicyMaxage ignore|log|enforce agesvdE
    Enable the caching minimum max-age policy.
    PolicyMaxageURL urlsvdE
    URL describing the caching minimum freshness lifetime policy.
    PolicyNocache ignore|log|enforcesvdE
    Enable the caching no-cache policy.
    PolicyNocacheURL urlsvdE
    URL describing the caching no-cache policy.
    PolicyType ignore|log|enforce type [ type [ ... ]]svdE
    Enable the content type policy.
    PolicyTypeURL urlsvdE
    URL describing the content type policy.
    PolicyValidation ignore|log|enforcesvdE
    Enable the validation policy.
    PolicyValidationURL urlsvdE
    URL describing the content type policy.
    PolicyVary ignore|log|enforce header [ header [ ... ]]svdE
    Enable the Vary policy.
    PolicyVaryURL urlsvdE
    URL describing the content type policy.
    PolicyVersion ignore|log|enforce HTTP/0.9|HTTP/1.0|HTTP/1.1svdE
    Enable the version policy.
    PolicyVersionURL urlsvdE
    URL describing the minimum request HTTP version policy.
    PollersPerChild number 0 sM
    Number of poll threads per child process
    PrivilegesMode FAST|SECURE|SELECTIVE FAST svdX
    Trade off processing speed and efficiency vs security against +
    PolicyConditional ignore|log|enforcesvdE
    Enable the conditional request policy.
    PolicyConditionalURL urlsvdE
    URL describing the conditional request policy.
    PolicyEnvironment variable log-value ignore-valuesvdE
    Override policies based on an environment variable.
    PolicyFilter on|offsvdE
    Enable or disable policies for the given URL space.
    PolicyKeepalive ignore|log|enforcesvdE
    Enable the keepalive policy.
    PolicyKeepaliveURL urlsvdE
    URL describing the keepalive policy.
    PolicyLength ignore|log|enforcesvdE
    Enable the content length policy.
    PolicyLengthURL urlsvdE
    URL describing the content length policy.
    PolicyMaxage ignore|log|enforce agesvdE
    Enable the caching minimum max-age policy.
    PolicyMaxageURL urlsvdE
    URL describing the caching minimum freshness lifetime policy.
    PolicyNocache ignore|log|enforcesvdE
    Enable the caching no-cache policy.
    PolicyNocacheURL urlsvdE
    URL describing the caching no-cache policy.
    PolicyType ignore|log|enforce type [ type [ ... ]]svdE
    Enable the content type policy.
    PolicyTypeURL urlsvdE
    URL describing the content type policy.
    PolicyValidation ignore|log|enforcesvdE
    Enable the validation policy.
    PolicyValidationURL urlsvdE
    URL describing the content type policy.
    PolicyVary ignore|log|enforce header [ header [ ... ]]svdE
    Enable the Vary policy.
    PolicyVaryURL urlsvdE
    URL describing the content type policy.
    PolicyVersion ignore|log|enforce HTTP/0.9|HTTP/1.0|HTTP/1.1svdE
    Enable the version policy.
    PolicyVersionURL urlsvdE
    URL describing the minimum request HTTP version policy.
    PollersPerChild number 0 sM
    Number of poll threads per child process
    PrivilegesMode FAST|SECURE|SELECTIVE FAST svd
    Trade off processing speed and efficiency vs security against malicious privileges-aware code.
    Protocol protocolsvC
    Protocol for a listening socket
    ProtocolEcho On|Off Off svX
    Turn the echo server on or off
    Protocols protocol ... http/1.1 svC
    Protocols available for a server/virtual host
    ProtocolsHonorOrder On|Off On svC
    Determines if order of Protocols determines precedence during negotiation
    <Proxy wildcard-url> ...</Proxy>svE
    Container for directives applied to proxied resources
    Proxy100Continue Off|On On svdE
    Forward 100-continue expectation to the origin server
    ProxyAddHeaders Off|On On svdE
    Add proxy information in X-Forwarded-* headers
    ProxyAsyncDelay time[s]svdE
    Time to poll synchronously before handing a connection to the +
    Protocol protocolsvC
    Protocol for a listening socket
    ProtocolEcho On|Off Off svX
    Turn the echo server on or off
    Protocols protocol ... http/1.1 svC
    Protocols available for a server/virtual host
    ProtocolsHonorOrder On|Off On svC
    Determines if order of Protocols determines precedence during negotiation
    <Proxy wildcard-url> ...</Proxy>svE
    Container for directives applied to proxied resources
    Proxy100Continue Off|On On svdE
    Forward 100-continue expectation to the origin server
    ProxyAddHeaders Off|On On svdE
    Add proxy information in X-Forwarded-* headers
    ProxyAsyncDelay time[s]svdE
    Time to poll synchronously before handing a connection to the MPM for asynchronous processing
    ProxyAsyncIdleTimeout time[s]svdE
    Inactivity timeout for asynchronous proxy connections
    ProxyBadHeader IsError|Ignore|StartBody IsError svE
    Determines how to handle bad header lines in a +
    ProxyAsyncIdleTimeout time[s]svdE
    Inactivity timeout for asynchronous proxy connections
    ProxyBadHeader IsError|Ignore|StartBody IsError svE
    Determines how to handle bad header lines in a response
    ProxyBeaconAddress address:portsvE
    Address of the reverse proxy to which a backend sends its +
    ProxyBeaconAddress address:portsvE
    Address of the reverse proxy to which a backend sends its announcements
    ProxyBeaconAdvertise urlsvE
    The routable URL a backend announces to the reverse proxy
    ProxyBeaconBalancer namesvE
    Name of the balancer that announced backends are added to
    ProxyBeaconInterval interval 5 svE
    How often a backend publishes its announcement
    ProxyBeaconListen [address][:port]svE
    Address on which the reverse proxy receives backend +
    ProxyBeaconAdvertise urlsvE
    The routable URL a backend announces to the reverse proxy
    ProxyBeaconBalancer namesvE
    Name of the balancer that announced backends are added to
    ProxyBeaconInterval interval 5 svE
    How often a backend publishes its announcement
    ProxyBeaconListen [address][:port]svE
    Address on which the reverse proxy receives backend beacons
    ProxyBeaconMaxSkew intervalsvE
    Maximum allowed age of a signed announcement
    ProxyBeaconSecret secretsvE
    Pre-shared secret used to authenticate announcements
    ProxyBeaconTimeout interval 0 svE
    How long the proxy waits, without an announcement, before a backend +
    ProxyBeaconMaxSkew intervalsvE
    Maximum allowed age of a signed announcement
    ProxyBeaconSecret secretsvE
    Pre-shared secret used to authenticate announcements
    ProxyBeaconTimeout interval 0 svE
    How long the proxy waits, without an announcement, before a backend is taken out of rotation
    ProxyBlock *|hostname|partial-hostname [hostname|partial-hostname]...svE
    Disallow proxy requests to certain hosts
    ProxyDomain DomainsvE
    Default domain name for proxied requests
    ProxyErrorOverride Off|On [code ...] Off svdE
    Override error pages for proxied content
    ProxyExpressDBMFile pathnamesvE
    Pathname to DBM file.
    ProxyExpressDBMType type default svE
    DBM type of file.
    ProxyExpressEnable on|off off svE
    Enable the module functionality.
    ProxyFCGIBackendType FPM|GENERIC FPM svdhE
    Specify the type of backend FastCGI application
    ProxyFCGISetEnvIf conditional-expression +
    ProxyBlock *|hostname|partial-hostname [hostname|partial-hostname]...svE
    Disallow proxy requests to certain hosts
    ProxyDomain DomainsvE
    Default domain name for proxied requests
    ProxyErrorOverride Off|On [code ...] Off svdE
    Override error pages for proxied content
    ProxyExpressDBMFile pathnamesvE
    Pathname to DBM file.
    ProxyExpressDBMType type default svE
    DBM type of file.
    ProxyExpressEnable on|off off svE
    Enable the module functionality.
    ProxyFCGIBackendType FPM|GENERIC FPM svdhE
    Specify the type of backend FastCGI application
    ProxyFCGISetEnvIf conditional-expression [!]environment-variable-name - [value-expression]svdhE
    Allow variables sent to FastCGI servers to be fixed up
    ProxyFtpDirCharset character_set ISO-8859-1 svdE
    Define the character set for proxied FTP listings
    ProxyFtpEscapeWildcards on|off on svdE
    Whether wildcards in requested filenames are escaped when sent to the FTP server
    ProxyFtpListOnWildcard on|off on svdE
    Whether wildcards in requested filenames trigger a file listing
    ProxyHCExpr name {ap_expr expression}svE
    Creates a named condition expression to use to determine health of the backend based on its response
    ProxyHCTemplate name parameter=setting [...]svE
    Creates a named template for setting various health check parameters
    ProxyHCTPsize size 16 sE
    Sets the total server-wide size of the threadpool used for the health check workers
    ProxyHTMLBufSize bytes 8192 svdB
    Sets the buffer size increment for buffering inline scripts and + [value-expression]svdhE
    Allow variables sent to FastCGI servers to be fixed up
    ProxyFtpDirCharset character_set ISO-8859-1 svdE
    Define the character set for proxied FTP listings
    ProxyFtpEscapeWildcards on|off on svdE
    Whether wildcards in requested filenames are escaped when sent to the FTP server
    ProxyFtpListOnWildcard on|off on svdE
    Whether wildcards in requested filenames trigger a file listing
    ProxyHCExpr name {ap_expr expression}svE
    Creates a named condition expression to use to determine health of the backend based on its response
    ProxyHCTemplate name parameter=setting [...]svE
    Creates a named template for setting various health check parameters
    ProxyHCTPsize size 16 sE
    Sets the total server-wide size of the threadpool used for the health check workers
    ProxyHTMLBufSize bytes 8192 svdB
    Sets the buffer size increment for buffering inline scripts and stylesheets.
    ProxyHTMLCharsetOut Charset | * UTF-8 svdB
    Specify a charset for mod_proxy_html output.
    ProxyHTMLDocType HTML|XHTML [Legacy]
    OR +
    ProxyHTMLCharsetOut Charset | * UTF-8 svdB
    Specify a charset for mod_proxy_html output.
    ProxyHTMLDocType HTML|XHTML [Legacy]
    OR
    ProxyHTMLDocType fpi [SGML|XML]
    OR
    ProxyHTMLDocType html5
    OR -
    ProxyHTMLDocType auto
    auto (2.5/trunk ver +svdB
    Sets an HTML or XHTML document type declaration.
    ProxyHTMLEnable On|Off Off svdB
    Turns the proxy_html filter on or off.
    ProxyHTMLEvents attribute [attribute ...]svdB
    Specify attributes to treat as scripting events.
    ProxyHTMLExtended On|Off Off svdB
    Determines whether to fix links in inline scripts, stylesheets, +
    ProxyHTMLDocType auto
    auto (2.5/trunk ver +svdB
    Sets an HTML or XHTML document type declaration.
    ProxyHTMLEnable On|Off Off svdB
    Turns the proxy_html filter on or off.
    ProxyHTMLEvents attribute [attribute ...]svdB
    Specify attributes to treat as scripting events.
    ProxyHTMLExtended On|Off Off svdB
    Determines whether to fix links in inline scripts, stylesheets, and scripting events.
    ProxyHTMLFixups [lowercase] [dospath] [reset] none svdB
    Fixes for simple HTML errors.
    ProxyHTMLInterp On|Off Off svdB
    Enables per-request interpolation of +
    ProxyHTMLFixups [lowercase] [dospath] [reset] none svdB
    Fixes for simple HTML errors.
    ProxyHTMLInterp On|Off Off svdB
    Enables per-request interpolation of ProxyHTMLURLMap rules.
    ProxyHTMLLinks element attribute [attribute2 ...]svdB
    Specify HTML elements that have URL attributes to be rewritten.
    ProxyHTMLMeta On|Off Off svdB
    Turns on or off extra pre-parsing of metadata in HTML +
    ProxyHTMLLinks element attribute [attribute2 ...]svdB
    Specify HTML elements that have URL attributes to be rewritten.
    ProxyHTMLMeta On|Off Off svdB
    Turns on or off extra pre-parsing of metadata in HTML <head> sections.
    ProxyHTMLStripComments On|Off Off svdB
    Determines whether to strip HTML comments.
    ProxyHTMLURLMap from-pattern to-pattern [flags] [cond]svdB
    Defines a rule to rewrite HTML links
    ProxyIOBufferSize bytes 8192 svE
    Determine size of internal data throughput buffer
    <ProxyMatch regex> ...</ProxyMatch>svE
    Container for directives applied to regular-expression-matched +
    ProxyHTMLStripComments On|Off Off svdB
    Determines whether to strip HTML comments.
    ProxyHTMLURLMap from-pattern to-pattern [flags] [cond]svdB
    Defines a rule to rewrite HTML links
    ProxyIOBufferSize bytes 8192 svE
    Determine size of internal data throughput buffer
    <ProxyMatch regex> ...</ProxyMatch>svE
    Container for directives applied to regular-expression-matched proxied resources
    ProxyMaxForwards number -1 svE
    Maximum number of proxies that a request can be forwarded +
    ProxyMaxForwards number -1 svE
    Maximum number of proxies that a request can be forwarded through
    ProxyPass [path] !|url [key=value - [key=value ...]] [nocanon] [interpolate] [noquery]svdE
    Maps remote servers into the local server URL-space
    ProxyPassInherit On|Off On svE
    Inherit ProxyPass directives defined from the main server
    ProxyPassInterpolateEnv On|Off Off svdE
    Enable Environment Variable interpolation in Reverse Proxy configurations
    ProxyPassMatch [regex] !|url [key=value - [key=value ...]]svdE
    Maps remote servers into the local server URL-space using regular expressions
    ProxyPassReverse [path] url -[interpolate]svdE
    Adjusts the URL in HTTP response headers sent from a reverse +
    ProxyPass [path] !|url [key=value + [key=value ...]] [nocanon] [interpolate] [noquery]svdE
    Maps remote servers into the local server URL-space
    ProxyPassInherit On|Off On svE
    Inherit ProxyPass directives defined from the main server
    ProxyPassInterpolateEnv On|Off Off svdE
    Enable Environment Variable interpolation in Reverse Proxy configurations
    ProxyPassMatch [regex] !|url [key=value + [key=value ...]]svdE
    Maps remote servers into the local server URL-space using regular expressions
    ProxyPassReverse [path] url +[interpolate]svdE
    Adjusts the URL in HTTP response headers sent from a reverse proxied server
    ProxyPassReverseCookieDomain internal-domain -public-domain [interpolate]svdE
    Adjusts the Domain string in Set-Cookie headers from a reverse- +
    ProxyPassReverseCookieDomain internal-domain +public-domain [interpolate]svdE
    Adjusts the Domain string in Set-Cookie headers from a reverse- proxied server
    ProxyPassReverseCookiePath internal-path -public-path [interpolate]svdE
    Adjusts the Path string in Set-Cookie headers from a reverse- +
    ProxyPassReverseCookiePath internal-path +public-path [interpolate]svdE
    Adjusts the Path string in Set-Cookie headers from a reverse- proxied server
    ProxyPreserveHost On|Off Off svdE
    Use incoming Host HTTP request header for proxy +
    ProxyPreserveHost On|Off Off svdE
    Use incoming Host HTTP request header for proxy request
    ProxyReceiveBufferSize bytes 0 svE
    Network buffer size for proxied HTTP and FTP +
    ProxyReceiveBufferSize bytes 0 svE
    Network buffer size for proxied HTTP and FTP connections
    ProxyRemote match remote-server [username:password]svE
    Remote proxy used to handle certain requests
    ProxyRemoteMatch regex remote-server [username:password]svE
    Remote proxy used to handle requests matched by regular +
    ProxyRemote match remote-server [username:password]svE
    Remote proxy used to handle certain requests
    ProxyRemoteMatch regex remote-server [username:password]svE
    Remote proxy used to handle requests matched by regular expressions
    ProxyRequests On|Off Off svE
    Enables forward (standard) proxy requests
    ProxySCGIInternalRedirect On|Off|Headername On svdE
    Enable or disable internal redirect responses from the +
    ProxyRequests On|Off Off svE
    Enables forward (standard) proxy requests
    ProxySCGIInternalRedirect On|Off|Headername On svdE
    Enable or disable internal redirect responses from the backend
    ProxySCGISendfile On|Off|Headername Off svdE
    Enable evaluation of X-Sendfile pseudo response +
    ProxySCGISendfile On|Off|Headername Off svdE
    Enable evaluation of X-Sendfile pseudo response header
    ProxySet url key=value [key=value ...]svdE
    Set various Proxy balancer or member parameters
    ProxySourceAddress addresssvE
    Set local IP address for outgoing proxy connections
    ProxyStatus Off|On|Full Off svE
    Show Proxy LoadBalancer status in mod_status
    ProxyTimeout time-interval[s]svE
    Network timeout for proxied requests
    ProxyVia On|Off|Full|Block Off svE
    Information provided in the Via HTTP response +
    ProxySet url key=value [key=value ...]svdE
    Set various Proxy balancer or member parameters
    ProxySourceAddress addresssvE
    Set local IP address for outgoing proxy connections
    ProxyStatus Off|On|Full Off svE
    Show Proxy LoadBalancer status in mod_status
    ProxyTimeout time-interval[s]svE
    Network timeout for proxied requests
    ProxyVia On|Off|Full|Block Off svE
    Information provided in the Via HTTP response header for proxied requests
    ProxyWebsocketAsync ON|OFFsvE
    Instructs this module to try to create an asynchronous tunnel
    ProxyWebsocketAsyncDelay num[ms] 0 svE
    Sets the amount of time the tunnel waits synchronously for data
    ProxyWebsocketFallbackToProxyHttp On|Off On svE
    Instructs this module to let mod_proxy_http handle the request
    ProxyWebsocketIdleTimeout num[ms] 0 svE
    Sets the maximum amount of time to wait for data on the websockets tunnel
    QualifyRedirectURL On|Off Off svdC
    Controls whether the REDIRECT_URL environment variable is +
    ProxyWebsocketAsync ON|OFFsv
    Instructs this module to try to create an asynchronous tunnel
    ProxyWebsocketAsyncDelay num[ms] 0 sv
    Sets the amount of time the tunnel waits synchronously for data
    ProxyWebsocketFallbackToProxyHttp On|Off On sv
    Instructs this module to let mod_proxy_http handle the request
    ProxyWebsocketIdleTimeout num[ms] 0 sv
    Sets the maximum amount of time to wait for data on the websockets tunnel
    QualifyRedirectURL On|Off Off svdC
    Controls whether the REDIRECT_URL environment variable is fully qualified
    ReadBufferSize bytes 8192 svdC
    Size of the buffers used to read data
    ReadmeName filenamesvdhB
    Name of the file that will be inserted at the end +
    ReadBufferSize bytes 8192 svdC
    Size of the buffers used to read data
    ReadmeName filenamesvdhB
    Name of the file that will be inserted at the end of the index listing
    ReceiveBufferSize bytes 0 sM
    TCP receive buffer size
    Redirect [status] [URL-path] -URLsvdhB
    Sends an external redirect asking the client to fetch +
    ReceiveBufferSize bytes 0 sM
    TCP receive buffer size
    Redirect [status] [URL-path] +URLsvdhB
    Sends an external redirect asking the client to fetch a different URL
    RedirectMatch [status] regex -URLsvdhB
    Sends an external redirect based on a regular expression match +
    RedirectMatch [status] regex +URLsvdhB
    Sends an external redirect based on a regular expression match of the current URL
    RedirectPermanent URL-path URLsvdhB
    Sends an external permanent redirect asking the client to fetch +
    RedirectPermanent URL-path URLsvdhB
    Sends an external permanent redirect asking the client to fetch a different URL
    RedirectRelative On|Off Off svdB
    Allows relative redirect targets.
    RedirectTemp URL-path URLsvdhB
    Sends an external temporary redirect asking the client to fetch +
    RedirectRelative On|Off Off svdB
    Allows relative redirect targets.
    RedirectTemp URL-path URLsvdhB
    Sends an external temporary redirect asking the client to fetch a different URL
    RedisConnPoolTTL num[units] 15s svE
    TTL used for the connection pool with the Redis server(s)
    RedisTimeout num[units] 5s svE
    R/W timeout used for the connection with the Redis server(s)
    ReflectorHeader inputheader [outputheader]svdhB
    Reflect an input header to the output headers
    RegexDefaultOptions [none] [+|-]option [[+|-]option] ... DOTALL DOLLAR_ENDON +sC
    Allow to configure global/default options for regexes
    RegisterHttpMethod method [method [...]]sC
    Register non-standard HTTP methods
    RemoteIPHeader header-fieldsvB
    Declare the header field which should be parsed for useragent IP addresses
    RemoteIPInternalProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPInternalProxyList filenamesvB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPProxiesHeader HeaderFieldNamesvB
    Declare the header field which will record all intermediate IP addresses
    RemoteIPProxyProtocol On|OffsvB
    Enable or disable PROXY protocol handling
    RemoteIPProxyProtocolExceptions host|range [host|range] [host|range]svB
    Disable processing of PROXY header for certain hosts or networks
    RemoteIPTrustedProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoteIPTrustedProxyList filenamesvB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoveCharset extension [extension] -...vdhB
    Removes any character set associations for a set of file +
    RedisConnPoolTTL num[units] 15s svE
    TTL used for the connection pool with the Redis server(s)
    RedisTimeout num[units] 5s svE
    R/W timeout used for the connection with the Redis server(s)
    ReflectorHeader inputheader [outputheader]svdhB
    Reflect an input header to the output headers
    RegexDefaultOptions [none] [+|-]option [[+|-]option] ... DOTALL DOLLAR_ENDON +sC
    Allow to configure global/default options for regexes
    RegisterHttpMethod method [method [...]]sC
    Register non-standard HTTP methods
    RemoteIPHeader header-fieldsvB
    Declare the header field which should be parsed for useragent IP addresses
    RemoteIPInternalProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPInternalProxyList filenamesvB
    Declare client intranet IP addresses trusted to present the RemoteIPHeader value
    RemoteIPProxiesHeader HeaderFieldNamesvB
    Declare the header field which will record all intermediate IP addresses
    RemoteIPProxyProtocol On|OffsvB
    Enable or disable PROXY protocol handling
    RemoteIPProxyProtocolExceptions host|range [host|range] [host|range]svB
    Disable processing of PROXY header for certain hosts or networks
    RemoteIPTrustedProxy proxy-ip|proxy-ip/subnet|hostname ...svB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoteIPTrustedProxyList filenamesvB
    Restrict client IP addresses trusted to present the RemoteIPHeader value
    RemoveCharset extension [extension] +...vdhB
    Removes any character set associations for a set of file extensions
    RemoveEncoding extension [extension] -...vdhB
    Removes any content encoding associations for a set of file +
    RemoveEncoding extension [extension] +...vdhB
    Removes any content encoding associations for a set of file extensions
    RemoveHandler extension [extension] -...vdhB
    Removes any handler associations for a set of file +
    RemoveHandler extension [extension] +...vdhB
    Removes any handler associations for a set of file extensions
    RemoveInputFilter extension [extension] -...vdhB
    Removes any input filter associations for a set of file +
    RemoveInputFilter extension [extension] +...vdhB
    Removes any input filter associations for a set of file extensions
    RemoveLanguage extension [extension] -...vdhB
    Removes any language associations for a set of file +
    RemoveLanguage extension [extension] +...vdhB
    Removes any language associations for a set of file extensions
    RemoveOutputFilter extension [extension] -...vdhB
    Removes any output filter associations for a set of file +
    RemoveOutputFilter extension [extension] +...vdhB
    Removes any output filter associations for a set of file extensions
    RemoveType extension [extension] -...vdhB
    Removes any content type associations for a set of file +
    RemoveType extension [extension] +...vdhB
    Removes any content type associations for a set of file extensions
    RequestHeader add|append|edit|edit*|merge|set|setifempty|unset +
    RequestHeader add|append|edit|edit*|merge|set|setifempty|unset header [[expr=]value [replacement] [early|env=[!]varname|expr=expression]] -svdhE
    Configure HTTP request headers
    RequestReadTimeout +svdhE
    Configure HTTP request headers
    RequestReadTimeout [handshake=timeout[-maxtimeout][,MinRate=rate] [header=timeout[-maxtimeout][,MinRate=rate] [body=timeout[-maxtimeout][,MinRate=rate] - handshake=0 header= +svE
    Set timeout values for completing the TLS handshake, receiving + handshake=0 header= +svE
    Set timeout values for completing the TLS handshake, receiving the request headers and/or body from client.
    Require [not] entity-name - [entity-name] ...dhB
    Tests whether an authenticated user is authorized by +
    Require [not] entity-name + [entity-name] ...dhB
    Tests whether an authenticated user is authorized by an authorization provider.
    <RequireAll> ... </RequireAll>dhB
    Enclose a group of authorization directives of which none +
    <RequireAll> ... </RequireAll>dhB
    Enclose a group of authorization directives of which none must fail and at least one must succeed for the enclosing directive to succeed.
    <RequireAny> ... </RequireAny>dhB
    Enclose a group of authorization directives of which one +
    <RequireAny> ... </RequireAny>dhB
    Enclose a group of authorization directives of which one must succeed for the enclosing directive to succeed.
    <RequireNone> ... </RequireNone>dhB
    Enclose a group of authorization directives of which none +
    <RequireNone> ... </RequireNone>dhB
    Enclose a group of authorization directives of which none must succeed for the enclosing directive to not fail.
    RewriteBase URL-pathdhE
    Sets the base URL for per-directory rewrites
    RewriteCond - TestString [!]CondPattern [flags]svdhE
    Defines a condition under which rewriting will take place +
    RewriteBase URL-pathdhE
    Sets the base URL for per-directory rewrites
    RewriteCond + TestString [!]CondPattern [flags]svdhE
    Defines a condition under which rewriting will take place
    RewriteEngine on|off off svdhE
    Enables or disables runtime rewriting engine
    RewriteMap MapName MapType:MapSource +
    RewriteEngine on|off off svdhE
    Enables or disables runtime rewriting engine
    RewriteMap MapName MapType:MapSource [MapTypeOptions] -svE
    Defines a mapping function for key-lookup
    RewriteOptions OptionssvdhE
    Sets some special options for the rewrite engine
    RewriteRule - [!]Pattern Substitution [flags]svdhE
    Defines rules for the rewriting engine
    RLimitCPU seconds|max [seconds|max]svdhC
    Limits the CPU consumption of processes launched +svE
    Defines a mapping function for key-lookup
    RewriteOptions OptionssvdhE
    Sets some special options for the rewrite engine
    RewriteRule + [!]Pattern Substitution [flags]svdhE
    Defines rules for the rewriting engine
    RLimitCPU seconds|max [seconds|max]svdhC
    Limits the CPU consumption of processes launched by Apache httpd children
    RLimitMEM bytes|max [bytes|max]svdhC
    Limits the memory consumption of processes launched +
    RLimitMEM bytes|max [bytes|max]svdhC
    Limits the memory consumption of processes launched by Apache httpd children
    RLimitNPROC number|max [number|max]svdhC
    Limits the number of processes that can be launched by +
    RLimitNPROC number|max [number|max]svdhC
    Limits the number of processes that can be launched by processes launched by Apache httpd children
    Satisfy Any|All All dhE
    Interaction between host-level access control and +
    Satisfy Any|All All dh
    Interaction between host-level access control and user authentication
    ScoreBoardFile file-path apache_runtime_stat +sM
    Location of the file used to store coordination data for +
    ScoreBoardFile file-path apache_runtime_stat +sM
    Location of the file used to store coordination data for the child processes
    Script method cgi-scriptsvdB
    Activates a CGI script for a particular request +
    Script method cgi-scriptsvdB
    Activates a CGI script for a particular request method.
    ScriptAlias [URL-path] -file-path|directory-pathsvdB
    Maps a URL to a filesystem location and designates the +
    ScriptAlias [URL-path] +file-path|directory-pathsvdB
    Maps a URL to a filesystem location and designates the target as a CGI script
    ScriptAliasMatch regex -file-path|directory-pathsvB
    Maps a URL to a filesystem location using a regular expression +
    ScriptAliasMatch regex +file-path|directory-pathsvB
    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 svdhC
    Technique for locating the interpreter for CGI +
    ScriptInterpreterSource Registry|Registry-Strict|Script Script svdhC
    Technique for locating the interpreter for CGI scripts
    ScriptLog file-pathsvB
    Location of the CGI script error logfile
    ScriptLogBuffer bytes 1024 svB
    Maximum amount of PUT or POST requests that will be recorded +
    ScriptLog file-pathsvB
    Location of the CGI script error logfile
    ScriptLogBuffer bytes 1024 svB
    Maximum amount of PUT or POST requests that will be recorded in the scriptlog
    ScriptLogLength bytes 10385760 svB
    Size limit of the CGI script logfile
    ScriptSock file-path cgisock sB
    The filename prefix of the socket to use for communication with +
    ScriptLogLength bytes 10385760 svB
    Size limit of the CGI script logfile
    ScriptSock file-path cgisock sB
    The filename prefix of the socket to use for communication with the cgi daemon
    SecureListen [IP-address:]portnumber -Certificate-Name [MUTUAL]sB
    Enables SSL encryption for the specified port
    SeeRequestTail On|Off Off sC
    Determine if mod_status displays the first 63 characters +
    SecureListen [IP-address:]portnumber +Certificate-Name [MUTUAL]sB
    Enables SSL encryption for the specified port
    SeeRequestTail On|Off Off sC
    Determine if mod_status displays the first 63 characters of a request or the last 63, assuming the request itself is greater than 63 chars.
    SendBufferSize bytes 0 sM
    TCP buffer size
    ServerAdmin email-address|URLsvC
    Email address that the server includes in error +
    SendBufferSize bytes 0 sM
    TCP buffer size
    ServerAdmin email-address|URLsvC
    Email address that the server includes in error messages sent to the client
    ServerAlias hostname [hostname] ...vC
    Alternate names for a host used when matching requests +
    ServerAlias hostname [hostname] ...vC
    Alternate names for a host used when matching requests to name-virtual hosts
    ServerLimit numbersM
    Upper limit on configurable number of processes
    ServerName [scheme://]domain-name|ip-address[:port]svC
    Hostname and port that the server uses to identify +
    ServerLimit numbersM
    Upper limit on configurable number of processes
    ServerName [scheme://]domain-name|ip-address[:port]svC
    Hostname and port that the server uses to identify itself
    ServerPath URL-pathvC
    Legacy URL pathname for a name-based virtual host that +
    ServerPath URL-pathvC
    Legacy URL pathname for a name-based virtual host that is accessed by an incompatible browser
    ServerRoot directory-path /usr/local/apache sC
    Base directory for the server installation
    ServerSignature On|Off|EMail Off svdhC
    Configures the footer on server-generated documents
    ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full Full sC
    Configures the Server HTTP response +
    ServerRoot directory-path /usr/local/apache sC
    Base directory for the server installation
    ServerSignature On|Off|EMail Off svdhC
    Configures the footer on server-generated documents
    ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full Full sC
    Configures the Server HTTP response header
    Session On|Off Off svdhE
    Enables a session for the current directory or location
    SessionCookieMaxAge On|Off On svdhE
    Control whether session cookies have Max-Age transmitted to the client
    SessionCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session
    SessionCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session
    SessionCookieRemove On|Off Off svdhE
    Control for whether session cookies should be removed from incoming HTTP headers
    SessionCryptoCipher name aes256 svdhX
    The crypto cipher to be used to encrypt the session
    SessionCryptoDriver name [param[=value]]sX
    The crypto driver to be used to encrypt the session
    SessionCryptoPassphrase secret [ secret ... ] svdhX
    The key used to encrypt the session
    SessionCryptoPassphraseFile filenamesvdX
    File containing keys used to encrypt the session
    SessionDBDCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session ID
    SessionDBDCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session ID
    SessionDBDCookieRemove On|Off On svdhE
    Control for whether session ID cookies should be removed from incoming HTTP headers
    SessionDBDDeleteLabel label deletesession svdhE
    The SQL query to use to remove sessions from the database
    SessionDBDInsertLabel label insertsession svdhE
    The SQL query to use to insert sessions into the database
    SessionDBDPerUser On|Off Off svdhE
    Enable a per user session
    SessionDBDSelectLabel label selectsession svdhE
    The SQL query to use to select sessions from the database
    SessionDBDUpdateLabel label updatesession svdhE
    The SQL query to use to update existing sessions in the database
    SessionEnv On|Off Off svdhE
    Control whether the contents of the session are written to the +
    Session On|Off Off svdhE
    Enables a session for the current directory or location
    SessionCookieMaxAge On|Off On svdhE
    Control whether session cookies have Max-Age transmitted to the client
    SessionCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session
    SessionCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session
    SessionCookieRemove On|Off Off svdhE
    Control for whether session cookies should be removed from incoming HTTP headers
    SessionCryptoCipher name aes256 svdhX
    The crypto cipher to be used to encrypt the session
    SessionCryptoDriver name [param[=value]]sX
    The crypto driver to be used to encrypt the session
    SessionCryptoPassphrase secret [ secret ... ] svdhX
    The key used to encrypt the session
    SessionCryptoPassphraseFile filenamesvdX
    File containing keys used to encrypt the session
    SessionDBDCookieName name attributessvdhE
    Name and attributes for the RFC2109 cookie storing the session ID
    SessionDBDCookieName2 name attributessvdhE
    Name and attributes for the RFC2965 cookie storing the session ID
    SessionDBDCookieRemove On|Off On svdhE
    Control for whether session ID cookies should be removed from incoming HTTP headers
    SessionDBDDeleteLabel label deletesession svdhE
    The SQL query to use to remove sessions from the database
    SessionDBDInsertLabel label insertsession svdhE
    The SQL query to use to insert sessions into the database
    SessionDBDPerUser On|Off Off svdhE
    Enable a per user session
    SessionDBDSelectLabel label selectsession svdhE
    The SQL query to use to select sessions from the database
    SessionDBDUpdateLabel label updatesession svdhE
    The SQL query to use to update existing sessions in the database
    SessionEnv On|Off Off svdhE
    Control whether the contents of the session are written to the HTTP_SESSION environment variable
    SessionExclude pathsvdhE
    Define URL prefixes for which a session is ignored
    SessionExpiryUpdateInterval interval 0 (always update) svdhE
    Define the number of seconds a session's expiry may change without +
    SessionExclude pathsvdhE
    Define URL prefixes for which a session is ignored
    SessionExpiryUpdateInterval interval 0 (always update) svdhE
    Define the number of seconds a session's expiry may change without the session being updated
    SessionHeader headersvdhE
    Import session updates from a given HTTP response header
    SessionInclude pathsvdhE
    Define URL prefixes for which a session is valid
    SessionMaxAge maxage 0 svdhE
    Define a maximum age in seconds for a session
    SetEnv env-variable [value]svdhB
    Sets environment variables
    SetEnvIf attribute +
    SessionHeader headersvdhE
    Import session updates from a given HTTP response header
    SessionInclude pathsvdhE
    Define URL prefixes for which a session is valid
    SessionMaxAge maxage 0 svdhE
    Define a maximum age in seconds for a session
    SetEnv env-variable [value]svdhB
    Sets environment variables
    SetEnvIf attribute regex [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request + [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request
    SetEnvIfExpr expr +
    SetEnvIfExpr expr [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on an ap_expr expression
    SetEnvIfNoCase attribute regex + [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on an ap_expr expression
    SetEnvIfNoCase attribute regex [!]env-variable[=value] - [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request + [[!]env-variable[=value]] ...svdhB
    Sets environment variables based on attributes of the request without respect to case
    SetHandler handler-name|none|expressionsvdhC
    Forces all matching files to be processed by a +
    SetHandler handler-name|none|expressionsvdhC
    Forces all matching files to be processed by a handler
    SetInputFilter filter[;filter...]svdhC
    Sets the filters that will process client requests and POST +
    SetInputFilter filter[;filter...]svdhC
    Sets the filters that will process client requests and POST input
    SetOutputFilter filter[;filter...]svdhC
    Sets the filters that will process responses from the +
    SetOutputFilter filter[;filter...]svdhC
    Sets the filters that will process responses from the server
    SSIEndTag tag "-->" svB
    String that ends an include element
    SSIErrorMsg message "[an error occurred +svdhB
    Error message displayed when there is an SSI +
    SSIEndTag tag "-->" svB
    String that ends an include element
    SSIErrorMsg message "[an error occurred +svdhB
    Error message displayed when there is an SSI error
    SSIETag on|off off dhB
    Controls whether ETags are generated by the server.
    SSILastModified on|off off dhB
    Controls whether Last-Modified headers are generated by the +
    SSIETag on|off off dhB
    Controls whether ETags are generated by the server.
    SSILastModified on|off off dhB
    Controls whether Last-Modified headers are generated by the server.
    SSILegacyExprParser on|off off dhB
    Enable compatibility mode for conditional expressions.
    SSIStartTag tag "<!--#" svB
    String that starts an include element
    SSITimeFormat formatstring "%A, %d-%b-%Y %H:%M +svdhB
    Configures the format in which date strings are +
    SSILegacyExprParser on|off off dhB
    Enable compatibility mode for conditional expressions.
    SSIStartTag tag "<!--#" svB
    String that starts an include element
    SSITimeFormat formatstring "%A, %d-%b-%Y %H:%M +svdhB
    Configures the format in which date strings are displayed
    SSIUndefinedEcho string "(none)" svdhB
    String displayed when an unset variable is echoed
    SSLCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates +
    SSIUndefinedEcho string "(none)" svdhB
    String displayed when an unset variable is echoed
    SSLCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates for Client Auth
    SSLCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for +
    SSLCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for Client Auth
    SSLCACertificateURI urisvE
    Server CA certificate store for Client Authentication
    SSLCADNRequestFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates for defining acceptable CA names
    SSLCADNRequestPath directory-pathsvE
    Directory of PEM-encoded CA Certificates for defining acceptable CA names
    SSLCARevocationCheck chain|leaf|none [flags ...] none svE
    Enable CRL-based revocation checking
    SSLCARevocationFile file-pathsvE
    File of concatenated PEM-encoded CA CRLs for +
    SSLCADNRequestURI urisvE
    certificate store of CA Certificates for defining +acceptable CA names
    SSLCARevocationCheck chain|leaf|none [flags ...] none svE
    Enable CRL-based revocation checking
    SSLCARevocationFile file-pathsvE
    File of concatenated PEM-encoded CA CRLs for Client Auth
    SSLCARevocationPath directory-pathsvE
    Directory of PEM-encoded CA CRLs for +
    SSLCARevocationPath directory-pathsvE
    Directory of PEM-encoded CA CRLs for Client Auth
    SSLCARevocationURI urisvE
    Server CA certificate revocation list store for Client Authentication
    SSLCertificateChainFile file-pathsvE
    File of PEM-encoded Server CA Certificates
    SSLCertificateFile file-path|certidsvE
    Server PEM-encoded X.509 certificate data file or token identifier
    SSLCertificateKeyFile file-path|keyidsvE
    Server PEM-encoded private key file
    SSLCipherSuite [protocol] cipher-spec DEFAULT (depends on +svdhE
    Cipher Suite available for negotiation in SSL +
    SSLCertificateURI urisvE
    Server certificate and key store
    SSLCipherSuite [protocol] cipher-spec DEFAULT (depends on +svdhE
    Cipher Suite available for negotiation in SSL handshake
    SSLClientHelloVars on|off off svE
    Enable collection of ClientHello variables
    SSLCompression on|off off svE
    Enable compression on the SSL level
    SSLCryptoDevice engine builtin sE
    Enable use of a cryptographic hardware accelerator
    SSLECHKeyDir dirnamesE
    Load the set of Encrypted Client Hello (ECH) PEM files in the named directory
    SSLEngine on|off off svE
    SSL Engine Operation Switch
    SSLFIPS on|off off sE
    SSL FIPS mode Switch
    SSLHonorCipherOrder on|off off svE
    Option to prefer the server's cipher preference order
    SSLOCSPDefaultResponder urisvE
    Set the default responder URI for OCSP validation
    SSLOCSPEnable on|leaf|off [flags] off svE
    Enable OCSP validation of the client certificate chain
    SSLOCSPNoverify on|off off svE
    skip the OCSP responder certificates verification
    SSLOCSPOverrideResponder on|off off svE
    Force use of the default responder URI for OCSP validation
    SSLOCSPProxyURL urlsvE
    Proxy URL to use for OCSP requests
    SSLOCSPResponderCertificateFile filesvE
    Set of trusted PEM encoded OCSP responder certificates
    SSLOCSPResponderTimeout seconds 10 svE
    Timeout for OCSP queries
    SSLOCSPResponseMaxAge seconds -1 svE
    Maximum allowable age for OCSP responses
    SSLOCSPResponseTimeSkew seconds 300 svE
    Maximum allowable time skew for OCSP response validation
    SSLOCSPUseRequestNonce on|off on svE
    Use a nonce within OCSP queries
    SSLOpenSSLConfCmd command-name command-valuesvE
    Configure OpenSSL parameters through its SSL_CONF API
    SSLOptions [+|-]option ...svdhE
    Configure various SSL engine run-time options
    SSLPassPhraseDialog type builtin sE
    Type of pass phrase dialog for encrypted private +
    SSLClientHelloVars on|off off svE
    Enable collection of ClientHello variables
    SSLCompression on|off off svE
    Enable compression on the SSL level
    SSLCryptoDevice engine builtin sE
    Enable use of a cryptographic hardware accelerator
    SSLECHKeyDir dirnamesE
    Load the set of Encrypted Client Hello (ECH) PEM files in the named directory
    SSLEngine on|off off svE
    SSL Engine Operation Switch
    SSLFIPS on|off off sE
    SSL FIPS mode Switch
    SSLHonorCipherOrder on|off off svE
    Option to prefer the server's cipher preference order
    SSLOCSPDefaultResponder urisvE
    Set the default responder URI for OCSP validation
    SSLOCSPEnable on|leaf|off [flags] off svE
    Enable OCSP validation of the client certificate chain
    SSLOCSPNoverify on|off off svE
    skip the OCSP responder certificates verification
    SSLOCSPOverrideResponder on|off off svE
    Force use of the default responder URI for OCSP validation
    SSLOCSPProxyURL urlsvE
    Proxy URL to use for OCSP requests
    SSLOCSPResponderCertificateFile filesvE
    Set of trusted PEM encoded OCSP responder certificates
    SSLOCSPResponderTimeout seconds 10 svE
    Timeout for OCSP queries
    SSLOCSPResponseMaxAge seconds -1 svE
    Maximum allowable age for OCSP responses
    SSLOCSPResponseTimeSkew seconds 300 svE
    Maximum allowable time skew for OCSP response validation
    SSLOCSPUseRequestNonce on|off on svE
    Use a nonce within OCSP queries
    SSLOpenSSLConfCmd command-name command-valuesvE
    Configure OpenSSL parameters through its SSL_CONF API
    SSLOptions [+|-]option ...svdhE
    Configure various SSL engine run-time options
    SSLPassPhraseDialog type builtin sE
    Type of pass phrase dialog for encrypted private keys
    SSLPolicy namesvE
    Apply a SSLPolicy by name
    SSLProtocol [+|-]protocol ... all -SSLv3 svE
    Configure usable SSL/TLS protocol versions
    SSLProxyCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates +
    SSLPolicy namesvE
    Apply a SSLPolicy by name
    SSLProtocol [+|-]protocol ... all -SSLv3 svE
    Configure usable SSL/TLS protocol versions
    SSLProxyCACertificateFile file-pathsvE
    File of concatenated PEM-encoded CA Certificates for Remote Server Auth
    SSLProxyCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for +
    SSLProxyCACertificatePath directory-pathsvE
    Directory of PEM-encoded CA Certificates for Remote Server Auth
    SSLProxyCACertificateURI urisvE
    Proxy CA certificate store for Remote Server Auth
    SSLProxyCARevocationCheck chain|leaf|none none svE
    Enable CRL-based revocation checking for Remote Server Auth
    SSLProxyCARevocationFile file-pathsvE
    File of concatenated PEM-encoded CA CRLs for Remote Server Auth
    SSLProxyCARevocationPath directory-pathsvE
    Directory of PEM-encoded CA CRLs for Remote Server Auth
    SSLProxyCheckPeerCN on|off on svE
    Whether to check the remote server certificate's CN field +
    SSLProxyCARevocationURI urisvE
    Proxy CA certificate revocation list store for Remote Server Auth
    SSLProxyCheckPeerCN on|off on svE
    Whether to check the remote server certificate's CN field
    SSLProxyCheckPeerExpire on|off on svE
    Whether to check if remote server certificate is expired +
    SSLProxyCheckPeerExpire on|off on svE
    Whether to check if remote server certificate is expired
    SSLProxyCheckPeerName on|off on svE
    Configure host name checking for remote server certificates +
    SSLProxyCheckPeerName on|off on svE
    Configure host name checking for remote server certificates
    SSLProxyCipherSuite [protocol] cipher-spec ALL:!ADH:RC4+RSA:+H +svE
    Cipher Suite available for negotiation in SSL +
    SSLProxyCipherSuite [protocol] cipher-spec ALL:!ADH:RC4+RSA:+H +svE
    Cipher Suite available for negotiation in SSL proxy handshake
    SSLProxyEngine on|off off svE
    SSL Proxy Engine Operation Switch
    SSLProxyMachineCertificateChainFile filenamesvE
    File of concatenated PEM-encoded CA certificates to be used by the proxy for choosing a certificate
    SSLProxyMachineCertificateFile filenamesvE
    File of concatenated PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificatePath directorysvE
    Directory of PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyEngine on|off off svE
    SSL Proxy Engine Operation Switch
    SSLProxyMachineCertificateChainFile filenamesvE
    File of concatenated PEM-encoded CA certificates to be used by the proxy for choosing a certificate
    SSLProxyMachineCertificateFile filenamesvE
    File of concatenated PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificatePath directorysvE
    Directory of PEM-encoded client certificates and keys to be used by the proxy
    SSLProxyMachineCertificateURI urisvE
    Proxy certificate and key stores
    SSLProxyProtocol [+|-]protocol ... all -SSLv3 svE
    Configure usable SSL protocol flavors for proxy usage
    SSLProxyVerify level none svE
    Type of remote server Certificate verification
    SSLProxyVerifyDepth number 1 svE
    Maximum depth of CA Certificates in Remote Server @@ -1294,15 +1303,15 @@ port
    UserDir directory-filename [directory-filename] ... svB
    Location of the user-specific directories
    VHostCGIMode On|Off|Secure On vX
    Determines whether the virtualhost can run +
    VHostCGIMode On|Off|Secure On v
    Determines whether the virtualhost can run subprocesses, and the privileges available to subprocesses.
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...vX
    Assign arbitrary privileges to subprocesses created +
    VHostCGIPrivs [+-]?privilege-name [[+-]?privilege-name] ...v
    Assign arbitrary privileges to subprocesses created by a virtual host.
    VHostGroup unix-groupidvX
    Sets the Group ID under which a virtual host runs.
    VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...vX
    Assign arbitrary privileges to a virtual host.
    VHostSecure On|Off On vX
    Determines whether the server runs with enhanced security +
    VHostGroup unix-groupidv
    Sets the Group ID under which a virtual host runs.
    VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...v
    Assign arbitrary privileges to a virtual host.
    VHostSecure On|Off On v
    Determines whether the server runs with enhanced security for the virtualhost.
    VHostUser unix-useridvX
    Sets the User ID under which a virtual host runs.
    VHostUser unix-useridv
    Sets the User ID under which a virtual host runs.
    VirtualDocumentRoot interpolated-directory|none none svE
    Dynamically configure the location of the document root for a given virtual host
    VirtualDocumentRootIP interpolated-directory|none none svE
    Dynamically configure the location of the document root diff --git a/docs/manual/rewrite/flags.html.en.utf8 b/docs/manual/rewrite/flags.html.en.utf8 index 375ae4e715..6fb3084459 100644 --- a/docs/manual/rewrite/flags.html.en.utf8 +++ b/docs/manual/rewrite/flags.html.en.utf8 @@ -38,6 +38,7 @@ providing detailed explanations and examples.

    top
    +
    +

    Flag Quick Reference

    + +

    Flags can be combined: [R=301,L], [P,QSA], +[E=VAR:val,L]. This table groups them by purpose, ordered +by how commonly each is used.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    FlagPurposeEffectCommon combos
    Flow Control
    [L]Last ruleStop processing rules (this pass)[R=301,L] [F] [G]
    [END]Full stopStop all rewrite processing (no re-entry in .htaccess)[R=301,END]
    [S=N]SkipSkip next N rules (if/else logic)
    [N]Next (loop)Restart ruleset from the top (caution: loop risk)
    [C]ChainTie rule to the next; if this fails, skip chained rules
    Redirection and Proxying
    [R=code]RedirectExternal redirect (default 302). Consider Redirect/RedirectMatch for simple cases[R=301,L] [R=302,L]
    [P]ProxyReverse proxy to target (requires mod_proxy)[P,QSA]
    Access Control
    [F]ForbiddenReturn 403 (implies [L])
    [G]GoneReturn 410 (implies [L])
    URL / Query String
    [QSA]Query string appendAppend original query string to substitution[QSA,L] [P,QSA]
    [QSD]Query string discardDrop original query string entirely[R=301,QSD,L]
    [B]Escape backrefsRe-encode special chars in backreferences[B,PT]
    [NE]No escapeDon't escape special chars in output (pass #, ? through)[R=301,NE,L]
    Metadata and Handlers
    [E]Set env varSet an environment variable[E=VAR:val,L]
    [T]MIME typeForce content type
    [H]HandlerForce a content handler
    [PT]Pass throughPass result to next handler (needed with Alias/ScriptAlias)[PT,L]
    Cookie
    [CO]Set cookieSet an HTTP cookie on the response[CO=name:val:.domain,R=302,L]
    +
    top

    B (escape backreferences)

    @@ -226,6 +357,13 @@ follows:

    [CO=NAME:VALUE:DOMAIN:lifetime:path:secure:httponly:samesite]

    +
    +

    Security Warning

    +

    Exercise care when constructing the argument from backreferences or other +variable expansion. If any part of the argument is derived from user input, +a malicious request may include delimeters or other unexpected values.

    +
    +

    If a literal ':' character is needed in any of the cookie fields, an alternate syntax is available. To opt-in to the alternate syntax, the cookie "Name" should be preceded with a ';' character, and field separators should be diff --git a/docs/manual/rewrite/intro.html.en.utf8 b/docs/manual/rewrite/intro.html.en.utf8 index bb91a9c3a7..acc48dbcdd 100644 --- a/docs/manual/rewrite/intro.html.en.utf8 +++ b/docs/manual/rewrite/intro.html.en.utf8 @@ -76,6 +76,14 @@ can give an overwhelming amount of information, it is indispensable in debugging problems with mod_rewrite configuration, since it will tell you exactly how each rule is processed.

    +

    + Simplified flowchart of mod_rewrite processing: request           arrives, check RewriteEngine On, iterate rules in order,           test pattern match and RewriteCond, apply substitution if           both pass, stop if L or END flag is set, otherwise continue           to next rule
    + Figure: Simplified overview of how + mod_rewrite processes a request. See + Technical Details for the full + processing model including phases, flags, and looping. +

    +
    top

    Regular Expressions

    @@ -215,7 +223,7 @@ pattern does not match.

    - Flow of RewriteRule and RewriteCond matching
    + Diagram showing how backreferences flow between       RewriteRule and RewriteCond: $1-$9 capture groups from the       RewriteRule pattern, %1-%9 capture groups from the most recent       RewriteCond TestString pattern, both available in the       substitution string and in subsequent RewriteCond TestStrings
    Figure 1: The back-reference flow through a rule.
    In this example, a request for /test/1234 to host admin.example.com would be transformed into /admin.foo?page=test&id=1234&host=admin.example.com, provided that %{DOCUMENT_ROOT}/test is not an existing file.

    @@ -263,7 +271,7 @@ content, handle that in your application logic or use a module such as mod_request paired with a custom filter.

    - Syntax of the RewriteRule directive
    + Annotated syntax diagram of the RewriteRule directive       showing three components: Pattern (regex matched against the       URL-path), Substitution (the replacement URL or path), and       optional Flags in square brackets
    Figure 2: Syntax of the RewriteRule directive.

    @@ -344,7 +352,7 @@ expression that must match the variable, and a third optional argument is a list of flags that modify how the match is evaluated.

    - Syntax of the RewriteCond directive
    + Annotated syntax diagram of the RewriteCond directive       showing two components: TestString (variable or text to test)       and CondPattern (regex or comparison to evaluate), with optional       flags in square brackets
    Figure 3: Syntax of the RewriteCond directive

    diff --git a/docs/manual/rewrite/tech.html.en.utf8 b/docs/manual/rewrite/tech.html.en.utf8 index f41417a55b..e71efcb2b3 100644 --- a/docs/manual/rewrite/tech.html.en.utf8 +++ b/docs/manual/rewrite/tech.html.en.utf8 @@ -101,6 +101,11 @@ and URL matching.

    the URL-path (or returns a redirect), Redirect never sees the request.

    +

    + Side-by-side comparison of module processing order:           in server context, mod_rewrite runs first in the           URL-to-filename phase then mod_alias runs second; in           per-directory context, mod_alias runs first in the           URL-to-filename phase, then mod_rewrite runs later in the           Fixup phase
    + Figure: Module processing order reversal between server and per-directory context +

    +
    # In this configuration, the Redirect is never reached for /old
     # because the RewriteRule matches first — even though
     # the Redirect appears earlier in the file.
    @@ -226,7 +231,7 @@ RewriteRule "^/horses/ponies$" "/special-handler" [L]
    first, and so the control flow is a little bit long-winded. See Figure 2 for more details.

    - Flow of RewriteRule and RewriteCond matching
    + Flowchart showing per-rule control flow: for each rule,           check pattern against URL, evaluate RewriteCond conditions,           apply substitution if both pass, then check flags to decide           whether to stop or continue to the next rule
    Figure 2:The control flow through the rewriting ruleset

    First the URL is matched against the