From ba4bbe177c62d49f98b11b3fea1bc51331e5fed0 Mon Sep 17 00:00:00 2001
From: Graham Leggett
Date: Wed, 7 Nov 2007 23:32:22 +0000
Subject: [PATCH] Update docs transformations
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@592953 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/mod/core.html.en | 60 +++
docs/manual/mod/directives.html.en | 1 +
docs/manual/mod/mod_include.html.en | 12 +-
docs/manual/mod/quickreference.html.en | 497 +++++++++++++------------
docs/manual/programs/configure.html.en | 4 +-
docs/manual/programs/configure.xml.ko | 2 +-
6 files changed, 324 insertions(+), 252 deletions(-)
diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en
index 1b84c01219..71981f9814 100644
--- a/docs/manual/mod/core.html.en
+++ b/docs/manual/mod/core.html.en
@@ -59,6 +59,7 @@ available
Include
KeepAlive
KeepAliveTimeout
+
KeptBodySize
<Limit>
<LimitExcept>
LimitInternalRecursion
@@ -1543,6 +1544,65 @@ requests on a persistent connection
higher the timeout, the more server processes will be kept
occupied waiting on connections with idle clients.
+
+
+
+| Description: | Keep the request body instead of discarding it up to
+the specified maximum size, for potential use by filters such as
+mod_include. |
+| Syntax: | KeptBodySize maximum size in bytes |
+| Default: | KeptBodySize 0 |
+| Context: | directory |
+| Status: | Core |
+| Module: | core |
+
+
Under normal circumstances, request handlers such as the
+ default handler for static files will discard the request body
+ when it is not needed by the request handler. As a result,
+ filters such as mod_include are limited to making GET requests
+ only when including other URLs as subrequests, even if the
+ original request was a POST request, as the discarded
+ request body is no longer available once filter processing is
+ taking place.
+
+
When this directive has a value greater than zero, request
+ handlers that would otherwise discard request bodies will
+ instead set the request body aside for use by filters up to
+ the maximum size specified. In the case of the mod_include
+ filter, an attempt to POST a request to the static
+ shtml file will cause any subrequests to be POST
+ requests, instead of GET requests as before.
+
+
This feature makes it possible to break up complex web pages and
+ web applications into small individual components, and combine
+ the components and the surrounding web page structure together
+ using mod_include. The components can take the
+ form of CGI programs, scripted languages, or URLs reverse proxied
+ into the URL space from another server using
+ mod_proxy.
+
+
Note: Each request set aside has to be set
+ aside in temporary RAM until the request is complete. As a result,
+ care should be taken to ensure sufficient RAM is available on the
+ server to support the intended load. Use of this directive
+ should be limited to where needed on targeted parts of your
+ URL space, and with the lowest possible value that is still big
+ enough to hold a request body.
+
+
If the request size sent by the client exceeds the maximum
+ size allocated by this directive, the server will return
+ 413 Request Entity Too Large.
+
+
Handlers such as mod_cgi that consume request
+ bodies for their own purposes rather than discard them do not take
+ this directive into account.
+
+
+
See also
+
diff --git a/docs/manual/mod/directives.html.en b/docs/manual/mod/directives.html.en
index fc2a034cf6..e167f38ca3 100644
--- a/docs/manual/mod/directives.html.en
+++ b/docs/manual/mod/directives.html.en
@@ -231,6 +231,7 @@
ISAPIReadAheadBuffer
KeepAlive
KeepAliveTimeout
+
KeptBodySize
LanguagePriority
LDAPCacheEntries
LDAPCacheTTL
diff --git a/docs/manual/mod/mod_include.html.en b/docs/manual/mod/mod_include.html.en
index 53599a30c0..d3b9ffe53b 100644
--- a/docs/manual/mod/mod_include.html.en
+++ b/docs/manual/mod/mod_include.html.en
@@ -357,14 +357,22 @@
If the specified URL is a CGI program, the program will be
executed and its output inserted in place of the directive in the
parsed file. You may include a query string in a CGI url:
-
+
<!--#include virtual="/cgi-bin/example.cgi?argument=value" -->
-
+
include virtual should be used in preference
to exec cgi to include the output of CGI programs
into an HTML document.
+
+
If the KeptBodySize
+ directive is correctly configured and valid for this included
+ file, attempts to POST requests to the enclosing HTML document
+ will be passed through to subrequests as POST requests as well.
+ Without the directive, all subrequests are processed as GET
+ requests.
+
diff --git a/docs/manual/mod/quickreference.html.en b/docs/manual/mod/quickreference.html.en
index b10ed69edf..ae269ba979 100644
--- a/docs/manual/mod/quickreference.html.en
+++ b/docs/manual/mod/quickreference.html.en
@@ -395,387 +395,390 @@ extensions
| KeepAlive On|Off | On | sv | C |
| Enables HTTP persistent connections |
| KeepAliveTimeout seconds | 5 | sv | C |
| Amount of time the server will wait for subsequent
requests on a persistent connection |
-
| LanguagePriority MIME-lang [MIME-lang]
-... | | svdh | B |
| The precendence of language variants for cases where
+ |
| KeptBodySize maximum size in bytes | 0 | d | C |
| Keep the request body instead of discarding it up to
+the specified maximum size, for potential use by filters such as
+mod_include. |
+
| LanguagePriority MIME-lang [MIME-lang]
+... | | svdh | B |
| The precendence of language variants for cases where
the client does not express a preference |
-
| LDAPCacheEntries number | 1024 | s | E |
| Maximum number of entries in the primary LDAP cache |
-
| LDAPCacheTTL seconds | 600 | s | E |
| Time that cached items remain valid |
-
| LDAPConnectionTimeout seconds | | s | E |
| Specifies the socket connection timeout in seconds |
-
| LDAPOpCacheEntries number | 1024 | s | E |
| Number of entries used to cache LDAP compare
+ |
| LDAPCacheEntries number | 1024 | s | E |
| Maximum number of entries in the primary LDAP cache |
+
| LDAPCacheTTL seconds | 600 | s | E |
| Time that cached items remain valid |
+
| LDAPConnectionTimeout seconds | | s | E |
| Specifies the socket connection timeout in seconds |
+
| LDAPOpCacheEntries number | 1024 | s | E |
| Number of entries used to cache LDAP compare
operations |
-
| LDAPOpCacheTTL seconds | 600 | s | E |
| Time that entries in the operation cache remain
+ |
| LDAPOpCacheTTL seconds | 600 | s | E |
| Time that entries in the operation cache remain
valid |
-
| LDAPSharedCacheFile directory-path/filename | | s | E |
| Sets the shared memory cache file |
-
| LDAPSharedCacheSize bytes | 102400 | s | E |
| Size in bytes of the shared-memory cache |
-
| LDAPTrustedClientCert type directory-path/filename/nickname [password] | | svdh | E |
| Sets the file containing or nickname referring to a per
+ |
| LDAPSharedCacheFile directory-path/filename | | s | E |
| Sets the shared memory cache file |
+
| LDAPSharedCacheSize bytes | 102400 | s | E |
| Size in bytes of the shared-memory cache |
+
| LDAPTrustedClientCert type directory-path/filename/nickname [password] | | svdh | E |
| Sets the file containing or nickname referring to a per
connection client certificate. Not all LDAP toolkits support per
connection client certificates. |
-
| LDAPTrustedGlobalCert type directory-path/filename [password] | | s | E |
| Sets the file or database containing global trusted
+ |
| LDAPTrustedGlobalCert type directory-path/filename [password] | | s | E |
| Sets the file or database containing global trusted
Certificate Authority or global client certificates |
-
| LDAPTrustedMode type | | sv | E |
| Specifies the SSL/TLS mode to be used when connecting to an LDAP server. |
-
| LDAPVerifyServerCert On|Off | On | s | E |
| Force server certificate verification |
-
| <Limit method [method] ... > ...
- </Limit> | | svdh | C |
| Restrict enclosed access controls to only certain HTTP
+ |
| LDAPTrustedMode type | | sv | E |
| Specifies the SSL/TLS mode to be used when connecting to an LDAP server. |
+
| LDAPVerifyServerCert On|Off | On | s | E |
| Force server certificate verification |
+
| <Limit method [method] ... > ...
+ </Limit> | | svdh | C |
| Restrict enclosed access controls to only certain HTTP
methods |
-
| <LimitExcept method [method] ... > ...
- </LimitExcept> | | svdh | C |
| Restrict access controls to all HTTP methods
+ |
| <LimitExcept method [method] ... > ...
+ </LimitExcept> | | svdh | C |
| Restrict access controls to all HTTP methods
except the named ones |
-
| LimitInternalRecursion number [number] | 10 | sv | C |
| Determine maximum number of internal redirects and nested
+ |
| LimitInternalRecursion number [number] | 10 | sv | C |
| Determine maximum number of internal redirects and nested
subrequests |
-
| LimitRequestBody bytes | 0 | svdh | C |
| Restricts the total size of the HTTP request body sent
+ |
| LimitRequestBody bytes | 0 | svdh | C |
| Restricts the total size of the HTTP request body sent
from the client |
-
| LimitRequestFields number | 100 | s | C |
| Limits the number of HTTP request header fields that
+ |
| LimitRequestFields number | 100 | s | C |
| Limits the number of HTTP request header fields that
will be accepted from the client |
-
| LimitRequestFieldSize bytes | 8190 | s | C |
| Limits the size of the HTTP request header allowed from the
+ |
| LimitRequestFieldSize bytes | 8190 | s | C |
| Limits the size of the HTTP request header allowed from the
client |
-
| LimitRequestLine bytes | 8190 | s | C |
| Limit the size of the HTTP request line that will be accepted
+ |
| LimitRequestLine bytes | 8190 | s | C |
| Limit the size of the HTTP request line that will be accepted
from the client |
-
| LimitXMLRequestBody bytes | 1000000 | svdh | C |
| Limits the size of an XML-based request body |
-
| Listen [IP-address:]portnumber [protocol] | | s | M |
| IP addresses and ports that the server
+ |
| LimitXMLRequestBody bytes | 1000000 | svdh | C |
| Limits the size of an XML-based request body |
+
| Listen [IP-address:]portnumber [protocol] | | s | M |
| IP addresses and ports that the server
listens to |
-
| ListenBacklog backlog | | s | M |
| Maximum length of the queue of pending connections |
-
| LoadFile filename [filename] ... | | s | E |
| Link in the named object file or library |
-
| LoadModule module filename | | s | E |
| Links in the object file or library, and adds to the list
+ |
| ListenBacklog backlog | | s | M |
| Maximum length of the queue of pending connections |
+
| LoadFile filename [filename] ... | | s | E |
| Link in the named object file or library |
+
| LoadModule module filename | | s | E |
| Links in the object file or library, and adds to the list
of active modules |
-
| <Location
- URL-path|URL> ... </Location> | | sv | C |
| Applies the enclosed directives only to matching
+ |
| <Location
+ URL-path|URL> ... </Location> | | sv | C |
| Applies the enclosed directives only to matching
URLs |
-
| <LocationMatch
- regex> ... </LocationMatch> | | sv | C |
| Applies the enclosed directives only to regular-expression
+ |
| <LocationMatch
+ regex> ... </LocationMatch> | | sv | C |
| Applies the enclosed directives only to regular-expression
matching URLs |
-
| LockFile filename | logs/accept.lock | s | M |
| Location of the accept serialization lock file (deprecated) |
-
| LogFormat format|nickname
-[nickname] | "%h %l %u %t \"%r\" + | sv | B |
| Describes a format for use in a log file |
-
| LogLevel level | warn | sv | C |
| Controls the verbosity of the ErrorLog |
-
| MaxClients number | | s | M |
| Maximum number of child processes that will be created
+ |
| LockFile filename | logs/accept.lock | s | M |
| Location of the accept serialization lock file (deprecated) |
+
| LogFormat format|nickname
+[nickname] | "%h %l %u %t \"%r\" + | sv | B |
| Describes a format for use in a log file |
+
| LogLevel level | warn | sv | C |
| Controls the verbosity of the ErrorLog |
+
| MaxClients number | | s | M |
| Maximum number of child processes that will be created
to serve requests |
-
| MaxKeepAliveRequests number | 100 | sv | C |
| Number of requests allowed on a persistent
+ |
| MaxKeepAliveRequests number | 100 | sv | C |
| Number of requests allowed on a persistent
connection |
-
| MaxMemFree KBytes | 0 | s | M |
| Maximum amount of memory that the main allocator is allowed
+ |
| MaxMemFree KBytes | 0 | s | M |
Maximum amount of memory that the main allocator is allowed
to hold without calling free() |
-
| MaxRequestsPerChild number | 10000 | s | M |
| Limit on the number of requests that an individual child server
+ |
| MaxRequestsPerChild number | 10000 | s | M |
| Limit on the number of requests that an individual child server
will handle during its life |
-
| MaxRequestsPerThread number | 0 | s | M |
| Limit on the number of requests that an individual thread
+ |
| MaxRequestsPerThread number | 0 | s | M |
| Limit on the number of requests that an individual thread
will handle during its life |
-
| MaxSpareServers number | 10 | s | M |
| Maximum number of idle child server processes |
-
| MaxSpareThreads number | | s | M |
| Maximum number of idle threads |
-
| MaxThreads number | 2048 | s | M |
| Set the maximum number of worker threads |
-
| MaxThreadsPerChild number | 64 | s | M |
| Maximum number of threads per child process |
-
| MCacheMaxObjectCount value | 1009 | s | E |
| The maximum number of objects allowed to be placed in the
+ |
| MaxSpareServers number | 10 | s | M |
| Maximum number of idle child server processes |
+
| MaxSpareThreads number | | s | M |
| Maximum number of idle threads |
+
| MaxThreads number | 2048 | s | M |
| Set the maximum number of worker threads |
+
| MaxThreadsPerChild number | 64 | s | M |
| Maximum number of threads per child process |
+
| MCacheMaxObjectCount value | 1009 | s | E |
| The maximum number of objects allowed to be placed in the
cache |
-
| MCacheMaxObjectSize bytes | 10000 | s | E |
| The maximum size (in bytes) of a document allowed in the
+ |
| MCacheMaxObjectSize bytes | 10000 | s | E |
| The maximum size (in bytes) of a document allowed in the
cache |
-
| MCacheMaxStreamingBuffer size_in_bytes | the smaller of 1000 + | s | E |
| Maximum amount of a streamed response to buffer in memory
+ |
| MCacheMaxStreamingBuffer size_in_bytes | the smaller of 1000 + | s | E |
| Maximum amount of a streamed response to buffer in memory
before declaring the response uncacheable |
-
| MCacheMinObjectSize bytes | 1 | s | E |
| The minimum size (in bytes) of a document to be allowed in the
+ |
| MCacheMinObjectSize bytes | 1 | s | E |
| The minimum size (in bytes) of a document to be allowed in the
cache |
-
| MCacheRemovalAlgorithm LRU|GDSF | GDSF | s | E |
| The algorithm used to select documents for removal from the
+ |
| MCacheRemovalAlgorithm LRU|GDSF | GDSF | s | E |
| The algorithm used to select documents for removal from the
cache |
-
| MCacheSize KBytes | 100 | s | E |
| The maximum amount of memory used by the cache in
+ |
| MCacheSize KBytes | 100 | s | E |
| The maximum amount of memory used by the cache in
KBytes |
-
| MetaDir directory | .web | svdh | E |
| Name of the directory to find CERN-style meta information
+ |
| MetaDir directory | .web | svdh | E |
| Name of the directory to find CERN-style meta information
files |
-
| MetaFiles on|off | off | svdh | E |
| Activates CERN meta-file processing |
-
| MetaSuffix suffix | .meta | svdh | E |
| File name suffix for the file containg CERN-style
+ |
| MetaFiles on|off | off | svdh | E |
| Activates CERN meta-file processing |
+
| MetaSuffix suffix | .meta | svdh | E |
| File name suffix for the file containg CERN-style
meta information |
-
| MimeMagicFile file-path | | sv | E |
| Enable MIME-type determination based on file contents
+ |
| MimeMagicFile file-path | | sv | E |
| Enable MIME-type determination based on file contents
using the specified magic file |
-
| MinSpareServers number | 5 | s | M |
| Minimum number of idle child server processes |
-
| MinSpareThreads number | | s | M |
| Minimum number of idle threads available to handle request
+ |
| MinSpareServers number | 5 | s | M |
| Minimum number of idle child server processes |
+
| MinSpareThreads number | | s | M |
| Minimum number of idle threads available to handle request
spikes |
-
| MMapFile file-path [file-path] ... | | s | X |
| Map a list of files into memory at startup time |
-
| ModMimeUsePathInfo On|Off | Off | d | B |
Tells mod_mime to treat path_info
+ |
| MMapFile file-path [file-path] ... | | s | X |
| Map a list of files into memory at startup time |
+
| ModMimeUsePathInfo On|Off | Off | d | B |
Tells mod_mime to treat path_info
components as part of the filename |
-
| MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers
-[Handlers|Filters] | NegotiatedOnly | svdh | B |
| The types of files that will be included when searching for
+ |
| MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers
+[Handlers|Filters] | NegotiatedOnly | svdh | B |
| The types of files that will be included when searching for
a matching file with MultiViews |
-
| NameVirtualHost addr[:port] | | s | C |
| Designates an IP address for name-virtual
+ |
| NameVirtualHost addr[:port] | | s | C |
| Designates an IP address for name-virtual
hosting |
-
| NoProxy host [host] ... | | sv | E |
| Hosts, domains, or networks that will be connected to
+ |
| NoProxy host [host] ... | | sv | E |
| Hosts, domains, or networks that will be connected to
directly |
-
| NumServers number | 2 | s | M |
| Total number of children alive at the same time |
-
| NWSSLTrustedCerts filename [filename] ... | | s | B |
| List of additional client certificates |
-
| NWSSLUpgradeable [IP-address:]portnumber | | s | B |
| Allows a connection to be upgraded to an SSL connection upon request |
-
| Options
- [+|-]option [[+|-]option] ... | All | svdh | C |
| Configures what features are available in a particular
+ |
| NumServers number | 2 | s | M |
| Total number of children alive at the same time |
+
| NWSSLTrustedCerts filename [filename] ... | | s | B |
| List of additional client certificates |
+
| NWSSLUpgradeable [IP-address:]portnumber | | s | B |
| Allows a connection to be upgraded to an SSL connection upon request |
+
| Options
+ [+|-]option [[+|-]option] ... | All | svdh | C |
| Configures what features are available in a particular
directory |
-
| Order ordering | Deny,Allow | dh | E |
| Controls the default access state and the order in which
+ |
| Order ordering | Deny,Allow | dh | E |
Controls the default access state and the order in which
Allow and Deny are
evaluated. |
-
| PassEnv env-variable [env-variable]
-... | | svdh | B |
| Passes environment variables from the shell |
-
| PidFile filename | logs/httpd.pid | s | M |
| File where the server records the process ID
+ |
| PassEnv env-variable [env-variable]
+... | | svdh | B |
| Passes environment variables from the shell |
+
| PidFile filename | logs/httpd.pid | s | M |
| File where the server records the process ID
of the daemon |
-
| ProtocolEcho On|Off | | sv | X |
| Turn the echo server on or off |
-
| <Proxy wildcard-url> ...</Proxy> | | sv | E |
| Container for directives applied to proxied resources |
-
| ProxyBadHeader IsError|Ignore|StartBody | IsError | sv | E |
| Determines how to handle bad header lines in a
+ |
| ProtocolEcho On|Off | | sv | X |
| Turn the echo server on or off |
+
| <Proxy wildcard-url> ...</Proxy> | | sv | E |
| Container for directives applied to proxied resources |
+
| ProxyBadHeader IsError|Ignore|StartBody | IsError | sv | E |
| Determines how to handle bad header lines in a
response |
-
| ProxyBlock *|word|host|domain
-[word|host|domain] ... | | sv | E |
| Words, hosts, or domains that are banned from being
+ |
| ProxyBlock *|word|host|domain
+[word|host|domain] ... | | sv | E |
| Words, hosts, or domains that are banned from being
proxied |
-
| ProxyDomain Domain | | sv | E |
| Default domain name for proxied requests |
-
| ProxyErrorOverride On|Off | Off | sv | E |
| Override error pages for proxied content |
-
| ProxyIOBufferSize bytes | 8192 | sv | E |
| Determine size of internal data throughput buffer |
-
| <ProxyMatch regex> ...</ProxyMatch> | | sv | E |
| Container for directives applied to regular-expression-matched
+ |
| ProxyDomain Domain | | sv | E |
| Default domain name for proxied requests |
+
| ProxyErrorOverride On|Off | Off | sv | E |
| Override error pages for proxied content |
+
| ProxyIOBufferSize bytes | 8192 | sv | E |
| Determine size of internal data throughput buffer |
+
| <ProxyMatch regex> ...</ProxyMatch> | | sv | E |
| Container for directives applied to regular-expression-matched
proxied resources |
-
| ProxyMaxForwards number | -1 | sv | E |
| Maximium number of proxies that a request can be forwarded
+ |
| ProxyMaxForwards number | -1 | sv | E |
| Maximium number of proxies that a request can be forwarded
through |
-
| ProxyPass [path] !|url [key=value
- [key=value ...]] [nocanon] [interpolate] | | svd | E |
| Maps remote servers into the local server URL-space |
-
| ProxyPassInterpolateEnv On|Off | Off | svd | E |
| Enable Environment Variable interpolation in Reverse Proxy configurations |
-
| ProxyPassMatch [regex] !|url [key=value
- [key=value ...]] | | svd | E |
| Maps remote servers into the local server URL-space using regular expressions |
-
| ProxyPassReverse [path] url
-[interpolate] | | svd | E |
| Adjusts the URL in HTTP response headers sent from a reverse
+ |
| ProxyPass [path] !|url [key=value
+ [key=value ...]] [nocanon] [interpolate] | | svd | E |
| Maps remote servers into the local server URL-space |
+
| ProxyPassInterpolateEnv On|Off | Off | svd | E |
| Enable Environment Variable interpolation in Reverse Proxy configurations |
+
| ProxyPassMatch [regex] !|url [key=value
+ [key=value ...]] | | svd | E |
| Maps remote servers into the local server URL-space using regular expressions |
+
| ProxyPassReverse [path] url
+[interpolate] | | svd | E |
| Adjusts the URL in HTTP response headers sent from a reverse
proxied server |
-
| ProxyPassReverseCookieDomain internal-domain
-public-domain [interpolate] | | svd | E |
| Adjusts the Domain string in Set-Cookie headers from a reverse-
+ |
| ProxyPassReverseCookieDomain internal-domain
+public-domain [interpolate] | | svd | E |
| Adjusts the Domain string in Set-Cookie headers from a reverse-
proxied server |
-
| ProxyPassReverseCookiePath internal-path
-public-path [interpolate] | | svd | E |
| Adjusts the Path string in Set-Cookie headers from a reverse-
+ |
| ProxyPassReverseCookiePath internal-path
+public-path [interpolate] | | svd | E |
| Adjusts the Path string in Set-Cookie headers from a reverse-
proxied server |
-
| ProxyPreserveHost On|Off | Off | sv | E |
| Use incoming Host HTTP request header for proxy
+ |
| ProxyPreserveHost On|Off | Off | sv | E |
| Use incoming Host HTTP request header for proxy
request |
-
| ProxyReceiveBufferSize bytes | 0 | sv | E |
| Network buffer size for proxied HTTP and FTP
+ |
| ProxyReceiveBufferSize bytes | 0 | sv | E |
| Network buffer size for proxied HTTP and FTP
connections |
-
| ProxyRemote match remote-server | | sv | E |
| Remote proxy used to handle certain requests |
-
| ProxyRemoteMatch regex remote-server | | sv | E |
| Remote proxy used to handle requests matched by regular
+ |
| ProxyRemote match remote-server | | sv | E |
| Remote proxy used to handle certain requests |
+
| ProxyRemoteMatch regex remote-server | | sv | E |
| Remote proxy used to handle requests matched by regular
expressions |
-
| ProxyRequests On|Off | Off | sv | E |
| Enables forward (standard) proxy requests |
-
| ProxySet url key=value [key=value ...] | | d | E |
| Set various Proxy balancer or member parameters |
-
| ProxyStatus Off|On|Full | Off | sv | E |
| Show Proxy LoadBalancer status in mod_status |
-
| ProxyTimeout seconds | 300 | sv | E |
| Network timeout for proxied requests |
-
| ProxyVia On|Off|Full|Block | Off | sv | E |
Information provided in the Via HTTP response
+ |
| ProxyRequests On|Off | Off | sv | E |
| Enables forward (standard) proxy requests |
+
| ProxySet url key=value [key=value ...] | | d | E |
| Set various Proxy balancer or member parameters |
+
| ProxyStatus Off|On|Full | Off | sv | E |
| Show Proxy LoadBalancer status in mod_status |
+
| ProxyTimeout seconds | 300 | sv | E |
| Network timeout for proxied requests |
+
| ProxyVia On|Off|Full|Block | Off | sv | E |
Information provided in the Via HTTP response
header for proxied requests |
-
| ReadmeName filename | | svdh | B |
| Name of the file that will be inserted at the end
+ |
| ReadmeName filename | | svdh | B |
| Name of the file that will be inserted at the end
of the index listing |
-
| ReceiveBufferSize bytes | 0 | s | M |
| TCP receive buffer size |
-
| Redirect [status] URL-path
-URL | | svdh | B |
| Sends an external redirect asking the client to fetch
+ |
| ReceiveBufferSize bytes | 0 | s | M |
| TCP receive buffer size |
+
| Redirect [status] URL-path
+URL | | svdh | B |
| Sends an external redirect asking the client to fetch
a different URL |
-
| RedirectMatch [status] regex
-URL | | svdh | B |
| Sends an external redirect based on a regular expression match
+ |
| RedirectMatch [status] regex
+URL | | svdh | B |
| Sends an external redirect based on a regular expression match
of the current URL |
-
| RedirectPermanent URL-path URL | | svdh | B |
| Sends an external permanent redirect asking the client to fetch
+ |
| RedirectPermanent URL-path URL | | svdh | B |
| Sends an external permanent redirect asking the client to fetch
a different URL |
-
| RedirectTemp URL-path URL | | svdh | B |
| Sends an external temporary redirect asking the client to fetch
+ |
| RedirectTemp URL-path URL | | svdh | B |
| Sends an external temporary redirect asking the client to fetch
a different URL |
-
| Reject entity-name [entity-name] ... | | dh | B |
| Rejects authenticated users or host based
+ |
| Reject entity-name [entity-name] ... | | dh | B |
| Rejects authenticated users or host based
requests from accessing a resource |
-
| RemoveCharset extension [extension]
-... | | vdh | B |
| Removes any character set associations for a set of file
+ |
| RemoveCharset extension [extension]
+... | | vdh | B |
| Removes any character set associations for a set of file
extensions |
-
| RemoveEncoding extension [extension]
-... | | vdh | B |
| Removes any content encoding associations for a set of file
+ |
| RemoveEncoding extension [extension]
+... | | vdh | B |
| Removes any content encoding associations for a set of file
extensions |
-
| RemoveHandler extension [extension]
-... | | vdh | B |
| Removes any handler associations for a set of file
+ |
| RemoveHandler extension [extension]
+... | | vdh | B |
| Removes any handler associations for a set of file
extensions |
-
| RemoveInputFilter extension [extension]
-... | | vdh | B |
| Removes any input filter associations for a set of file
+ |
| RemoveInputFilter extension [extension]
+... | | vdh | B |
| Removes any input filter associations for a set of file
extensions |
-
| RemoveLanguage extension [extension]
-... | | vdh | B |
| Removes any language associations for a set of file
+ |
| RemoveLanguage extension [extension]
+... | | vdh | B |
| Removes any language associations for a set of file
extensions |
-
| RemoveOutputFilter extension [extension]
-... | | vdh | B |
| Removes any output filter associations for a set of file
+ |
| RemoveOutputFilter extension [extension]
+... | | vdh | B |
| Removes any output filter associations for a set of file
extensions |
-
| RemoveType extension [extension]
-... | | vdh | B |
| Removes any content type associations for a set of file
+ |
| RemoveType extension [extension]
+... | | vdh | B |
| Removes any content type associations for a set of file
extensions |
-
| RequestHeader set|append|merge|add|unset|edit header
-[value] [replacement] [early|env=[!]variable] | | svdh | E |
| Configure HTTP request headers |
-
| Require entity-name [entity-name] ... | | dh | B |
| Selects which authenticated users can access
+ |
| RequestHeader set|append|merge|add|unset|edit header
+[value] [replacement] [early|env=[!]variable] | | svdh | E |
| Configure HTTP request headers |
+
| Require entity-name [entity-name] ... | | dh | B |
| Selects which authenticated users can access
a resource |
-
| RewriteBase URL-path | | dh | E |
| Sets the base URL for per-directory rewrites |
-
| RewriteCond
- TestString CondPattern | | svdh | E |
| Defines a condition under which rewriting will take place
+ |
| RewriteBase URL-path | | dh | E |
| Sets the base URL for per-directory rewrites |
+
| RewriteCond
+ TestString CondPattern | | svdh | E |
| Defines a condition under which rewriting will take place
|
-
| RewriteEngine on|off | off | svdh | E |
| Enables or disables runtime rewriting engine |
-
| RewriteLock file-path | | s | E |
Sets the name of the lock file used for RewriteMap
+ |
| RewriteEngine on|off | off | svdh | E |
| Enables or disables runtime rewriting engine |
+
| RewriteLock file-path | | s | E |
Sets the name of the lock file used for RewriteMap
synchronization |
-
| RewriteLog file-path | | sv | E |
| Sets the name of the file used for logging rewrite engine
+ |
| RewriteLog file-path | | sv | E |
| Sets the name of the file used for logging rewrite engine
processing |
-
| RewriteLogLevel Level | 0 | sv | E |
| Sets the verbosity of the log file used by the rewrite
+ |
| RewriteLogLevel Level | 0 | sv | E |
| Sets the verbosity of the log file used by the rewrite
engine |
-
| RewriteMap MapName MapType:MapSource
- | | sv | E |
| Defines a mapping function for key-lookup |
-
| RewriteOptions Options | | svdh | E |
| Sets some special options for the rewrite engine |
-
| RewriteRule
- Pattern Substitution [flags] | | svdh | E |
| Defines rules for the rewriting engine |
-
| RLimitCPU seconds|max [seconds|max] | | svdh | C |
| Limits the CPU consumption of processes launched
+ |
| RewriteMap MapName MapType:MapSource
+ | | sv | E |
| Defines a mapping function for key-lookup |
+
| RewriteOptions Options | | svdh | E |
| Sets some special options for the rewrite engine |
+
| RewriteRule
+ Pattern Substitution [flags] | | svdh | E |
| Defines rules for the rewriting engine |
+
| RLimitCPU seconds|max [seconds|max] | | svdh | C |
| Limits the CPU consumption of processes launched
by Apache children |
-
| RLimitMEM bytes|max [bytes|max] | | svdh | C |
| Limits the memory consumption of processes launched
+ |
| RLimitMEM bytes|max [bytes|max] | | svdh | C |
| Limits the memory consumption of processes launched
by Apache children |
-
| RLimitNPROC number|max [number|max] | | svdh | C |
| Limits the number of processes that can be launched by
+ |
| RLimitNPROC number|max [number|max] | | svdh | C |
| Limits the number of processes that can be launched by
processes launched by Apache children |
-
| Satisfy Any|All | All | dh | E |
| Interaction between host-level access control and
+ |
| Satisfy Any|All | All | dh | E |
| Interaction between host-level access control and
user authentication |
-
| <SatisfyAll>
-... </SatisfyAll> | | dh | B |
| Enclose a group of authorization directives that must all
+ |
| <SatisfyAll>
+... </SatisfyAll> | | dh | B |
| Enclose a group of authorization directives that must all
be satisfied in order to grant access to a resource. This block allows
for 'AND' logic to be applied to various authorization providers. |
-
| <SatisfyOne>
-... </SatisfyOne> | | dh | B |
| Enclose a group of authorization directives that must
+ |
| <SatisfyOne>
+... </SatisfyOne> | | dh | B |
| Enclose a group of authorization directives that must
satisfy at least one in order to grant access to a resource. This
block allows for 'OR' logic to be applied to various authorization
providers. |
-
| ScoreBoardFile file-path | logs/apache_status | s | M |
| Location of the file used to store coordination data for
+ |
| ScoreBoardFile file-path | logs/apache_status | s | M |
| Location of the file used to store coordination data for
the child processes |
-
| Script method cgi-script | | svd | B |
| Activates a CGI script for a particular request
+ |
| Script method cgi-script | | svd | B |
| Activates a CGI script for a particular request
method. |
-
| ScriptAlias URL-path
-file-path|directory-path | | sv | B |
| Maps a URL to a filesystem location and designates the
+ |
| ScriptAlias URL-path
+file-path|directory-path | | sv | B |
| Maps a URL to a filesystem location and designates the
target as a CGI script |
-
| ScriptAliasMatch regex
-file-path|directory-path | | sv | B |
| Maps a URL to a filesystem location using a regular expression
+ |
| ScriptAliasMatch regex
+file-path|directory-path | | sv | B |
| Maps a URL to a filesystem location using a regular expression
and designates the target as a CGI script |
-
| ScriptInterpreterSource Registry|Registry-Strict|Script | Script | svdh | C |
| Technique for locating the interpreter for CGI
+ |
| ScriptInterpreterSource Registry|Registry-Strict|Script | Script | svdh | C |
| Technique for locating the interpreter for CGI
scripts |
-
| ScriptLog file-path | | sv | B |
| Location of the CGI script error logfile |
-
| ScriptLogBuffer bytes | 1024 | sv | B |
| Maximum amount of PUT or POST requests that will be recorded
+ |
| ScriptLog file-path | | sv | B |
| Location of the CGI script error logfile |
+
| ScriptLogBuffer bytes | 1024 | sv | B |
| Maximum amount of PUT or POST requests that will be recorded
in the scriptlog |
-
| ScriptLogLength bytes | 10385760 | sv | B |
| Size limit of the CGI script logfile |
-
| ScriptSock file-path | logs/cgisock | s | B |
| The filename prefix of the socket to use for communication with
+ |
| ScriptLogLength bytes | 10385760 | sv | B |
| Size limit of the CGI script logfile |
+
| ScriptSock file-path | logs/cgisock | s | B |
| The filename prefix of the socket to use for communication with
the cgi daemon |
-
| SecureListen [IP-address:]portnumber
-Certificate-Name [MUTUAL] | | s | B |
| Enables SSL encryption for the specified port |
-
| SeeRequestTail On|Off | Off | s | B |
| Determine if mod_status displays the first 63 characters
+ |
| SecureListen [IP-address:]portnumber
+Certificate-Name [MUTUAL] | | s | B |
| Enables SSL encryption for the specified port |
+
| SeeRequestTail On|Off | Off | s | B |
| 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 | s | M |
| TCP buffer size |
-
| ServerAdmin email-address|URL | | sv | C |
| Email address that the server includes in error
+ |
| SendBufferSize bytes | 0 | s | M |
| TCP buffer size |
+
| ServerAdmin email-address|URL | | sv | C |
| Email address that the server includes in error
messages sent to the client |
-
| ServerAlias hostname [hostname] ... | | v | C |
| Alternate names for a host used when matching requests
+ |
| ServerAlias hostname [hostname] ... | | v | C |
| Alternate names for a host used when matching requests
to name-virtual hosts |
-
| ServerLimit number | | s | M |
| Upper limit on configurable number of processes |
-
| ServerName [scheme://]fully-qualified-domain-name[:port] | | sv | C |
| Hostname and port that the server uses to identify
+ |
| ServerLimit number | | s | M |
| Upper limit on configurable number of processes |
+
| ServerName [scheme://]fully-qualified-domain-name[:port] | | sv | C |
| Hostname and port that the server uses to identify
itself |
-
| ServerPath URL-path | | v | C |
| Legacy URL pathname for a name-based virtual host that
+ |
| ServerPath URL-path | | v | C |
| Legacy URL pathname for a name-based virtual host that
is accessed by an incompatible browser |
-
| ServerRoot directory-path | /usr/local/apache | s | C |
| Base directory for the server installation |
-
| ServerSignature On|Off|EMail | Off | svdh | C |
| Configures the footer on server-generated documents |
-
| ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full | Full | s | C |
Configures the Server HTTP response
+ |
| ServerRoot directory-path | /usr/local/apache | s | C |
| Base directory for the server installation |
+
| ServerSignature On|Off|EMail | Off | svdh | C |
| Configures the footer on server-generated documents |
+
| ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full | Full | s | C |
Configures the Server HTTP response
header |
-
| SetEnv env-variable value | | svdh | B |
| Sets environment variables |
-
SetEnvIf attribute
+| SetEnv env-variable value | | svdh | B | | Sets environment variables |
+| SetEnvIf attribute
regex [!]env-variable[=value]
- [[!]env-variable[=value]] ... | | svdh | B | | Sets environment variables based on attributes of the request
- |
-| SetEnvIfNoCase attribute regex
- [!]env-variable[=value]
[[!]env-variable[=value]] ... | | svdh | B | | Sets environment variables based on attributes of the request
+ |
+| SetEnvIfNoCase attribute regex
+ [!]env-variable[=value]
+ [[!]env-variable[=value]] ... | | svdh | B | | Sets environment variables based on attributes of the request
without respect to case |
-| SetHandler handler-name|None | | svdh | C | | Forces all matching files to be processed by a
+ | | SetHandler handler-name|None | | svdh | C | | Forces all matching files to be processed by a
handler |
-| SetInputFilter filter[;filter...] | | svdh | C | | Sets the filters that will process client requests and POST
+ | | SetInputFilter filter[;filter...] | | svdh | C | | Sets the filters that will process client requests and POST
input |
-| SetOutputFilter filter[;filter...] | | svdh | C | | Sets the filters that will process responses from the
+ | | SetOutputFilter filter[;filter...] | | svdh | C | | Sets the filters that will process responses from the
server |
-| SSIEnableAccess on|off | off | dh | B | | Enable the -A flag during conditional flow control processing. |
-| SSIEndTag tag | "-->" | sv | B | | String that ends an include element |
-| SSIErrorMsg message | "[an error occurred + | svdh | B | | Error message displayed when there is an SSI
+ | | SSIEnableAccess on|off | off | dh | B | | Enable the -A flag during conditional flow control processing. |
+| SSIEndTag tag | "-->" | sv | B | | String that ends an include element |
+| SSIErrorMsg message | "[an error occurred + | svdh | B | | Error message displayed when there is an SSI
error |
-| SSIStartTag tag | "<!--#" | sv | B | | String that starts an include element |
-| SSITimeFormat formatstring | "%A, %d-%b-%Y %H:%M + | svdh | B | | Configures the format in which date strings are
+ | | SSIStartTag tag | "<!--#" | sv | B | | String that starts an include element |
+| SSITimeFormat formatstring | "%A, %d-%b-%Y %H:%M + | svdh | B | | Configures the format in which date strings are
displayed |
-| SSIUndefinedEcho string | "(none)" | svdh | B | | String displayed when an unset variable is echoed |
-| SSLCACertificateFile file-path | | sv | E | | File of concatenated PEM-encoded CA Certificates
+ | | SSIUndefinedEcho string | "(none)" | svdh | B | | String displayed when an unset variable is echoed |
+| SSLCACertificateFile file-path | | sv | E | | File of concatenated PEM-encoded CA Certificates
for Client Auth |
-| SSLCACertificatePath directory-path | | sv | E | | Directory of PEM-encoded CA Certificates for
+ | | SSLCACertificatePath directory-path | | sv | E | | Directory of PEM-encoded CA Certificates for
Client Auth |
-| SSLCADNRequestFile file-path | | sv | E | | File of concatenated PEM-encoded CA Certificates
+ | | SSLCADNRequestFile file-path | | sv | E | | File of concatenated PEM-encoded CA Certificates
for defining acceptable CA names |
-| SSLCADNRequestPath directory-path | | sv | E | | Directory of PEM-encoded CA Certificates for
+ | | SSLCADNRequestPath directory-path | | sv | E | | Directory of PEM-encoded CA Certificates for
defining acceptable CA names |
-| SSLCARevocationFile file-path | | sv | E | | File of concatenated PEM-encoded CA CRLs for
+ | | SSLCARevocationFile file-path | | sv | E | | File of concatenated PEM-encoded CA CRLs for
Client Auth |
-| SSLCARevocationPath directory-path | | sv | E | | Directory of PEM-encoded CA CRLs for
+ | | SSLCARevocationPath directory-path | | sv | E | | Directory of PEM-encoded CA CRLs for
Client Auth |
-| SSLCertificateChainFile file-path | | sv | E | | File of PEM-encoded Server CA Certificates |
-| SSLCertificateFile file-path | | sv | E | | Server PEM-encoded X.509 Certificate file |
-| SSLCertificateKeyFile file-path | | sv | E | | Server PEM-encoded Private Key file |
-| SSLCipherSuite cipher-spec | ALL:!ADH:RC4+RSA:+H + | svdh | E | | Cipher Suite available for negotiation in SSL
+ | | SSLCertificateChainFile file-path | | sv | E | | File of PEM-encoded Server CA Certificates |
+| SSLCertificateFile file-path | | sv | E | | Server PEM-encoded X.509 Certificate file |
+| SSLCertificateKeyFile file-path | | sv | E | | Server PEM-encoded Private Key file |
+| SSLCipherSuite cipher-spec | ALL:!ADH:RC4+RSA:+H + | svdh | E | | Cipher Suite available for negotiation in SSL
handshake |
-| SSLCryptoDevice engine | builtin | s | E | | Enable use of a cryptographic hardware accelerator |
-| SSLEngine on|off|optional | off | sv | E | | SSL Engine Operation Switch |
-| SSLHonorCiperOrder flag | | sv | E | | Option to prefer the server's cipher preference order |
-| SSLMutex type | none | s | E | | Semaphore for internal mutual exclusion of
+ | | SSLCryptoDevice engine | builtin | s | E | | Enable use of a cryptographic hardware accelerator |
+| SSLEngine on|off|optional | off | sv | E | | SSL Engine Operation Switch |
+| SSLHonorCiperOrder flag | | sv | E | | Option to prefer the server's cipher preference order |
+| SSLMutex type | none | s | E | | Semaphore for internal mutual exclusion of
operations |
-| SSLOptions [+|-]option ... | | svdh | E | | Configure various SSL engine run-time options |
-| SSLPassPhraseDialog type | builtin | s | E | | Type of pass phrase dialog for encrypted private
+ | | SSLOptions [+|-]option ... | | svdh | E | | Configure various SSL engine run-time options |
+| SSLPassPhraseDialog type | builtin | s | E | | Type of pass phrase dialog for encrypted private
keys |
-| SSLProtocol [+|-]protocol ... | all | sv | E | | Configure usable SSL protocol versions |
-| SSLProxyCACertificateFile file-path | | sv | E | | File of concatenated PEM-encoded CA Certificates
+ | | SSLProtocol [+|-]protocol ... | all | sv | E | | Configure usable SSL protocol versions |
+| SSLProxyCACertificateFile file-path | | sv | E | | File of concatenated PEM-encoded CA Certificates
for Remote Server Auth |
-| SSLProxyCACertificatePath directory-path | | sv | E | | Directory of PEM-encoded CA Certificates for
+ | | SSLProxyCACertificatePath directory-path | | sv | E | | Directory of PEM-encoded CA Certificates for
Remote Server Auth |
-| SSLProxyCARevocationFile file-path | | sv | E | | File of concatenated PEM-encoded CA CRLs for
+ | | SSLProxyCARevocationFile file-path | | sv | E | | File of concatenated PEM-encoded CA CRLs for
Remote Server Auth |
-| SSLProxyCARevocationPath directory-path | | sv | E | | Directory of PEM-encoded CA CRLs for
+ | | SSLProxyCARevocationPath directory-path | | sv | E | | Directory of PEM-encoded CA CRLs for
Remote Server Auth |
-| SSLProxyCipherSuite cipher-spec | ALL:!ADH:RC4+RSA:+H + | svdh | E | | Cipher Suite available for negotiation in SSL
+ | | SSLProxyCipherSuite cipher-spec | ALL:!ADH:RC4+RSA:+H + | svdh | E | | Cipher Suite available for negotiation in SSL
proxy handshake |
-| SSLProxyEngine on|off | off | sv | E | | SSL Proxy Engine Operation Switch |
-| SSLProxyMachineCertificateFile filename | | s | E | | File of concatenated PEM-encoded client certificates and keys to be used by the proxy |
-| SSLProxyMachineCertificatePath directory | | s | E | | Directory of PEM-encoded client certificates and keys to be used by the proxy |
-| SSLProxyProtocol [+|-]protocol ... | all | sv | E | | Configure usable SSL protocol flavors for proxy usage |
-| SSLProxyVerify level | none | svdh | E | | Type of remote server Certificate verification |
-| SSLProxyVerifyDepth number | 1 | svdh | E | | Maximum depth of CA Certificates in Remote Server
+ | | SSLProxyEngine on|off | off | sv | E | | SSL Proxy Engine Operation Switch |
+| SSLProxyMachineCertificateFile filename | | s | E | | File of concatenated PEM-encoded client certificates and keys to be used by the proxy |
+| SSLProxyMachineCertificatePath directory | | s | E | | Directory of PEM-encoded client certificates and keys to be used by the proxy |
+| SSLProxyProtocol [+|-]protocol ... | all | sv | E | | Configure usable SSL protocol flavors for proxy usage |
+| SSLProxyVerify level | none | svdh | E | | Type of remote server Certificate verification |
+| SSLProxyVerifyDepth number | 1 | svdh | E | | Maximum depth of CA Certificates in Remote Server
Certificate verification |
-| SSLRandomSeed context source
-[bytes] | | s | E | | Pseudo Random Number Generator (PRNG) seeding
+ | | SSLRandomSeed context source
+[bytes] | | s | E | | Pseudo Random Number Generator (PRNG) seeding
source |
-| SSLRequire expression | | dh | E | | Allow access only when an arbitrarily complex
+ | | SSLRequire expression | | dh | E | | Allow access only when an arbitrarily complex
boolean expression is true |
-| SSLRequireSSL | | dh | E | | Deny access when SSL is not used for the
+ | | SSLRequireSSL | | dh | E | | Deny access when SSL is not used for the
HTTP request |
-| SSLSessionCache type | none | s | E | | Type of the global/inter-process SSL Session
+ | | SSLSessionCache type | none | s | E | | Type of the global/inter-process SSL Session
Cache |
-| SSLSessionCacheTimeout seconds | 300 | sv | E | | Number of seconds before an SSL session expires
+ | | SSLSessionCacheTimeout seconds | 300 | sv | E | | Number of seconds before an SSL session expires
in the Session Cache |
-| SSLUserName varname | | sdh | E | | Variable name to determine user name |
-| SSLVerifyClient level | none | svdh | E | | Type of Client Certificate verification |
-| SSLVerifyDepth number | 1 | svdh | E | | Maximum depth of CA Certificates in Client
+ | | SSLUserName varname | | sdh | E | | Variable name to determine user name |
+| SSLVerifyClient level | none | svdh | E | | Type of Client Certificate verification |
+| SSLVerifyDepth number | 1 | svdh | E | | Maximum depth of CA Certificates in Client
Certificate verification |
-| StartServers number | | s | M | | Number of child server processes created at startup |
-| StartThreads number | | s | M | | Number of threads created on startup |
-| Substitute s/pattern/substitution/[inf] | | dh | X | | Pattern to filter the response content |
-| SuexecUserGroup User Group | | sv | E | | User and group permissions for CGI programs |
-| ThreadLimit number | | s | M | | Sets the upper limit on the configurable number of threads
+ | | StartServers number | | s | M | | Number of child server processes created at startup |
+| StartThreads number | | s | M | | Number of threads created on startup |
+| Substitute s/pattern/substitution/[inf] | | dh | X | | Pattern to filter the response content |
+| SuexecUserGroup User Group | | sv | E | | User and group permissions for CGI programs |
+| ThreadLimit number | | s | M | | Sets the upper limit on the configurable number of threads
per child process |
-| ThreadsPerChild number | | s | M | | Number of threads created by each child process |
-| ThreadStackSize size | | s | M | | The size in bytes of the stack used by threads handling
+ | | ThreadsPerChild number | | s | M | | Number of threads created by each child process |
+| ThreadStackSize size | | s | M | | The size in bytes of the stack used by threads handling
client connections |
-| TimeOut seconds | 300 | sv | C | | Amount of time the server will wait for
+ | | TimeOut seconds | 300 | sv | C | | Amount of time the server will wait for
certain events before failing a request |
-| TraceEnable [on|off|extended] | on | s | C | Determines the behaviour on TRACE
+ | | TraceEnable [on|off|extended] | on | s | C | Determines the behaviour on TRACE
requests |
-| TransferLog file|pipe | | sv | B | | Specify location of a log file |
-| TypesConfig file-path | conf/mime.types | s | B | The location of the mime.types file |
-| UnsetEnv env-variable [env-variable]
-... | | svdh | B | | Removes variables from the environment |
-| UseCanonicalName On|Off|DNS | Off | svd | C | | Configures how the server determines its own name and
+ | | TransferLog file|pipe | | sv | B | | Specify location of a log file |
+| TypesConfig file-path | conf/mime.types | s | B | The location of the mime.types file |
+| UnsetEnv env-variable [env-variable]
+... | | svdh | B | | Removes variables from the environment |
+| UseCanonicalName On|Off|DNS | Off | svd | C | | Configures how the server determines its own name and
port |
-| UseCanonicalPhysicalPort On|Off | Off | svd | C | | Configures how the server determines its own name and
+ | | UseCanonicalPhysicalPort On|Off | Off | svd | C | | Configures how the server determines its own name and
port |
-| User unix-userid | #-1 | s | M | | The userid under which the server will answer
+ | | User unix-userid | #-1 | s | M | | The userid under which the server will answer
requests |
-| UserDir directory-filename | | sv | B | | Location of the user-specific directories |
-| VirtualDocumentRoot interpolated-directory|none | none | sv | E | | Dynamically configure the location of the document root
+ | | UserDir directory-filename | | sv | B | | Location of the user-specific directories |
+| VirtualDocumentRoot interpolated-directory|none | none | sv | E | | Dynamically configure the location of the document root
for a given virtual host |
-| VirtualDocumentRootIP interpolated-directory|none | none | sv | E | | Dynamically configure the location of the document root
+ | | VirtualDocumentRootIP interpolated-directory|none | none | sv | E | | Dynamically configure the location of the document root
for a given virtual host |
-<VirtualHost
+| <VirtualHost
addr[:port] [addr[:port]]
- ...> ... </VirtualHost> | | s | C | | Contains directives that apply only to a specific
+ ...> ... </VirtualHost> | | s | C | | Contains directives that apply only to a specific
hostname or IP address |
-| VirtualScriptAlias interpolated-directory|none | none | sv | E | | Dynamically configure the location of the CGI directory for
+ | | VirtualScriptAlias interpolated-directory|none | none | sv | E | | Dynamically configure the location of the CGI directory for
a given virtual host |
-| VirtualScriptAliasIP interpolated-directory|none | none | sv | E | | Dynamically configure the location of the cgi directory for
+ | | VirtualScriptAliasIP interpolated-directory|none | none | sv | E | | Dynamically configure the location of the cgi directory for
a given virtual host |
-| Win32DisableAcceptEx | | s | M | | Use accept() rather than AcceptEx() to accept network connections |
-| XBitHack on|off|full | off | svdh | B | | Parse SSI directives in files with the execute bit
+ | | Win32DisableAcceptEx | | s | M | | Use accept() rather than AcceptEx() to accept network connections |
+| XBitHack on|off|full | off | svdh | B | | Parse SSI directives in files with the execute bit
set |
diff --git a/docs/manual/programs/configure.html.en b/docs/manual/programs/configure.html.en
index 32babd7fc6..60e16beb4a 100644
--- a/docs/manual/programs/configure.html.en
+++ b/docs/manual/programs/configure.html.en
@@ -19,7 +19,7 @@
Apache > HTTP Server > Documentation > Version 2.3 > Programsconfigure - Configure the source tree
Available Languages: en |
- ko
+ ko
The configure script configures the source tree
@@ -936,7 +936,7 @@
Available Languages: en |
- ko
+ ko
diff --git a/docs/manual/programs/configure.xml.ko b/docs/manual/programs/configure.xml.ko
index 9c64c8f21e..08843f3b9b 100644
--- a/docs/manual/programs/configure.xml.ko
+++ b/docs/manual/programs/configure.xml.ko
@@ -1,7 +1,7 @@
-
+
| |