Regenerated after previous commit.

This commit is contained in:
Ruslan Ermilov 2011-09-15 08:33:25 +00:00
parent 2a46092c5a
commit 1ebdcd1d90
4 changed files with 42 additions and 35 deletions

View File

@ -1,4 +1,4 @@
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>HTTP Core Module</title></head><body><a name="directives"></a><center><h4>Directives</h4></center><hr><a name="aio"></a><strong>syntax</strong>: <html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>HTTP Core Module</title></head><body><center><h3>HTTP Core Module</h3></center><a name="directives"></a><center><h4>Directives</h4></center><hr><a name="aio"></a><strong>syntax</strong>:
<code>aio <code>aio
<code>on</code> | <code>on</code> |
<code>off</code> | <code>off</code> |
@ -148,8 +148,8 @@ This directive can be used during debugging, or when using the
<code>$request_body_file</code> <code>$request_body_file</code>
variable, or the variable, or the
<a href="ngx_http_perl_module.html#methods">$r-&gt;request_body_file</a> <a href="ngx_http_perl_module.html#methods">$r-&gt;request_body_file</a>
method of the method of the module
<a href="ngx_http_perl_module.html">http_perl</a> module. <a href="ngx_http_perl_module.html">ngx_http_perl_module</a>.
</p><p> </p><p>
When set to the value <code>on</code>, temporary files are not When set to the value <code>on</code>, temporary files are not
removed after request processing. removed after request processing.
@ -203,8 +203,8 @@ Defines a timeout for reading client request body.
A timeout is only set between two successive read operations, A timeout is only set between two successive read operations,
not for the transmission of the whole request body. not for the transmission of the whole request body.
If a client does not transmit anything within this time, If a client does not transmit anything within this time,
the error the client error
<i>"Request time out"</i> (408) 408 (Request Time-out)
is returned. is returned.
</p><hr><a name="client_header_buffer_size"></a><strong>syntax</strong>: </p><hr><a name="client_header_buffer_size"></a><strong>syntax</strong>:
<code>client_header_buffer_size <code><i>size</i></code></code><br><strong>default</strong>: <code>client_header_buffer_size <code><i>size</i></code></code><br><strong>default</strong>:
@ -224,8 +224,8 @@ directive.
<code>http</code>, <code>server</code><br><p> <code>http</code>, <code>server</code><br><p>
Defines a timeout for reading client request header. Defines a timeout for reading client request header.
If a client does not transmit the entire header within this time, If a client does not transmit the entire header within this time,
the error the client error
<i>"Request time out"</i> (408) 408 (Request Time-out)
is returned. is returned.
</p><hr><a name="client_max_body_size"></a><strong>syntax</strong>: </p><hr><a name="client_max_body_size"></a><strong>syntax</strong>:
<code>client_max_body_size <code><i>size</i></code></code><br><strong>default</strong>: <code>client_max_body_size <code><i>size</i></code></code><br><strong>default</strong>:
@ -235,9 +235,9 @@ Sets the maximum allowed size of the client request body,
specified in the specified in the
<code>Content-Length</code> <code>Content-Length</code>
request header field. request header field.
If <code><i>size</i></code> is greater than the configured value, the If it exceeds the configured value, the client error
<i>"Request Entity Too Large"</i> (413) 413 (Request Entity Too Large)
error is returned to a client. is returned.
Please be aware that Please be aware that
<a href="/web/upload.html">browsers cannot correctly display <a href="/web/upload.html">browsers cannot correctly display
this error</a>. this error</a>.
@ -341,8 +341,9 @@ request header.
<strong>none</strong><br><strong>context</strong>: <strong>none</strong><br><strong>context</strong>:
<code>location</code><br><p> <code>location</code><br><p>
Specifies that a given location can only be used for internal requests. Specifies that a given location can only be used for internal requests.
For external requests, the <i>"Not found"</i> (404) For external requests, the client error
error is returned. 404 (Not Found)
is returned.
Internal requests are the following: Internal requests are the following:
<ul><li> <ul><li>
@ -350,13 +351,13 @@ requests redirected by the <a href="#error_page">error_page</a> directive;
</li><li> </li><li>
subrequests formed by the subrequests formed by the
<code>include virtual</code> <code>include virtual</code>
command of the command of the module
<a href="ngx_http_ssi_module.html">http_ssi</a> module; <a href="ngx_http_ssi_module.html">ngx_http_ssi_module</a>;
</li><li> </li><li>
requests changed by the requests changed by the
<a href="ngx_http_rewrite_module.html#rewrite">rewrite</a> <a href="ngx_http_rewrite_module.html#rewrite">rewrite</a>
directive of the directive of the module
<a href="ngx_http_rewrite_module.html">http_rewrite</a> module. <a href="ngx_http_rewrite_module.html">ngx_http_rewrite_module</a>.
</li></ul></p><p> </li></ul></p><p>
Example: Example:
<blockquote><pre> <blockquote><pre>
@ -396,12 +397,13 @@ MSIE will close keep-alive connection in about 60 seconds.
<code>http</code>, <code>server</code><br><p> <code>http</code>, <code>server</code><br><p>
Sets the maximum <code><i>number</i></code> and <code><i>size</i></code> of Sets the maximum <code><i>number</i></code> and <code><i>size</i></code> of
buffers used when reading large client request headers. buffers used when reading large client request headers.
A request line cannot exceed the size of one buffer, or the A request line cannot exceed the size of one buffer, or the client error
<i>"Request URI too large"</i> (414) 414 (Request-URI Too Large)
error is returned. is returned.
A request header field cannot exceed the size of one buffer as well, or the A request header field cannot exceed the size of one buffer as well, or the
<i>"Bad request"</i> (400) client error
error is returned. 400 (Bad Request)
is returned.
Buffers are allocated only on demand. Buffers are allocated only on demand.
By default, the buffer size is equal to one memory page size. By default, the buffer size is equal to one memory page size.
It is either 4K or 8K, platform dependent. It is either 4K or 8K, platform dependent.
@ -414,9 +416,9 @@ into the keep-alive state, these buffers are freed.
Limits allowed HTTP methods inside a location. Limits allowed HTTP methods inside a location.
The GET method also implies the HEAD method. The GET method also implies the HEAD method.
Access to other methods can be limited using the Access to other methods can be limited using the
<a href="ngx_http_access_module.html">http_access</a> <a href="ngx_http_access_module.html">ngx_http_access_module</a>
and and
<a href="ngx_http_auth_basic_module.html">http_auth_basic</a> <a href="ngx_http_auth_basic_module.html">ngx_http_auth_basic_module</a>
modules directives: modules directives:
<blockquote><pre> <blockquote><pre>
limit_except GET { limit_except GET {
@ -866,8 +868,8 @@ If a URI need to be modified, the
<code>satisfy all</code><br><strong>context</strong>: <code>satisfy all</code><br><strong>context</strong>:
<code>location</code><br><p> <code>location</code><br><p>
Allows access if any of the Allows access if any of the
<a href="ngx_http_access_module.html">http_access</a> <a href="ngx_http_access_module.html">ngx_http_access_module</a>
or <a href="ngx_http_auth_basic_module.html">http_auth_basic</a> or <a href="ngx_http_auth_basic_module.html">ngx_http_auth_basic_module</a>
modules grant access. modules grant access.
<blockquote><pre> <blockquote><pre>
location / { location / {
@ -1192,8 +1194,8 @@ location /download/ {
<code>http</code>, <code>server</code><br><p> <code>http</code>, <code>server</code><br><p>
Enables or disables the use of underscores in client request header fields. Enables or disables the use of underscores in client request header fields.
</p><a name="variables"></a><center><h4>Embedded Variables</h4></center><p> </p><a name="variables"></a><center><h4>Embedded Variables</h4></center><p>
The http_core module supports embedded variables with names matching The module <code>ngx_http_core_module</code> supports embedded variables with
those of the Apache Server. names matching those of the Apache Server.
First of all, these are variables representing client request header First of all, these are variables representing client request header
fields, such as, <code>$http_user_agent</code>, <code>$http_cookie</code>, fields, such as, <code>$http_user_agent</code>, <code>$http_cookie</code>,
and so on. and so on.

View File

@ -1,4 +1,4 @@
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>Core Module</title></head><body><a name="example"></a><center><h4>Example Configuration</h4></center><p><blockquote><pre> <html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>Core Module</title></head><body><center><h3>Core Module</h3></center><a name="example"></a><center><h4>Example Configuration</h4></center><p><blockquote><pre>
user www www; user www www;
worker_processes 2; worker_processes 2;
@ -27,9 +27,8 @@ variable inheritance during a
<a href="control.html#upgrade">live upgrade</a> <a href="control.html#upgrade">live upgrade</a>
of an executable file; of an executable file;
</li><li> </li><li>
use of variables by the use of variables by the module
<a href="http/ngx_http_perl_module.html">http_perl</a> <a href="http/ngx_http_perl_module.html">ngx_http_perl_module</a>;
module;
</li><li> </li><li>
use of variables by worker processes. use of variables by worker processes.
Please bear in mind that controlling system libraries in this way Please bear in mind that controlling system libraries in this way
@ -40,9 +39,9 @@ An exception from this is an above mentioned
<a href="control.html#upgrade">live upgrade</a> <a href="control.html#upgrade">live upgrade</a>
of an executable file. of an executable file.
</li></ul></p><p> </li></ul></p><p>
The TZ variable is always inherited and made available to the The TZ variable is always inherited and made available to the module
<a href="http/ngx_http_perl_module.html">http_perl</a> <a href="http/ngx_http_perl_module.html">ngx_http_perl_module</a>,
module, unless configured explicitly. unless configured explicitly.
</p><p> </p><p>
Usage example: Usage example:
<blockquote><pre> <blockquote><pre>

View File

@ -88,7 +88,7 @@
</code> </code>
</xsl:template> </xsl:template>
<xsl:template match="http-error"> <xsl:template match="http-status">
<xsl:value-of select="@code"/> <xsl:value-of select="@code"/>
<xsl:text> (</xsl:text> <xsl:text> (</xsl:text>

View File

@ -26,6 +26,12 @@
<body> <body>
<center>
<h3>
<xsl:value-of select="@name"/>
</h3>
</center>
<xsl:apply-templates/> <xsl:apply-templates/>
</body> </body>