From: Joshua Slive Date: Tue, 19 Jun 2001 03:55:59 +0000 (+0000) Subject: Note mod_headers changes in a couple other places. X-Git-Tag: 2.0.19~55 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=61be6d564435d0d59d14261a806c263d89fc983c;p=apache Note mod_headers changes in a couple other places. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89388 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/env.html b/docs/manual/env.html index 23f8c4bac2..1911c60153 100644 --- a/docs/manual/env.html +++ b/docs/manual/env.html @@ -129,6 +129,7 @@ underscore when passed to CGI scripts and SSI pages. mod_access
mod_cgi
+mod_headers
mod_include
mod_log_config
mod_rewrite
@@ -139,6 +140,7 @@ underscore when passed to CGI scripts and SSI pages. Allow
CustomLog
Deny
+Header
LogFormat
RewriteCond
RewriteRule
@@ -189,6 +191,15 @@ for filenames ending in gif, or you can choose to only log requests from clients which are outside your subnet.

+

Conditional Response Headers

+ +

The Header directive can use the presence or absence +of an environment variable to determine whether or not a certain +HTTP header will be placed in the response to the client. +This allows, for example, a certain response header to be sent +only if a corresponding header is received in the request from +the client.

+

URL Rewriting

The %{ENV:...} form of TestString in the diff --git a/docs/manual/env.html.en b/docs/manual/env.html.en index 23f8c4bac2..1911c60153 100644 --- a/docs/manual/env.html.en +++ b/docs/manual/env.html.en @@ -129,6 +129,7 @@ underscore when passed to CGI scripts and SSI pages. mod_access
mod_cgi
+mod_headers
mod_include
mod_log_config
mod_rewrite
@@ -139,6 +140,7 @@ underscore when passed to CGI scripts and SSI pages. Allow
CustomLog
Deny
+Header
LogFormat
RewriteCond
RewriteRule
@@ -189,6 +191,15 @@ for filenames ending in gif, or you can choose to only log requests from clients which are outside your subnet.

+

Conditional Response Headers

+ +

The Header directive can use the presence or absence +of an environment variable to determine whether or not a certain +HTTP header will be placed in the response to the client. +This allows, for example, a certain response header to be sent +only if a corresponding header is received in the request from +the client.

+

URL Rewriting

The %{ENV:...} form of TestString in the diff --git a/docs/manual/new_features_2_0.html b/docs/manual/new_features_2_0.html index be30beef75..8bb0dc4944 100644 --- a/docs/manual/new_features_2_0.html +++ b/docs/manual/new_features_2_0.html @@ -86,6 +86,11 @@ posting and maintaining web content.

New module in Apache 2.0. This module includes the functionality of mod_mmap_static in Apache 1.3, plus adds further caching abilities. +
mod_headers +
This module is much more flexible in Apache 2.0. It can now +modify request headers used by mod_proxy, and it can conditionally set +response headers. + diff --git a/docs/manual/new_features_2_0.html.en b/docs/manual/new_features_2_0.html.en index be30beef75..8bb0dc4944 100644 --- a/docs/manual/new_features_2_0.html.en +++ b/docs/manual/new_features_2_0.html.en @@ -86,6 +86,11 @@ posting and maintaining web content.
New module in Apache 2.0. This module includes the functionality of mod_mmap_static in Apache 1.3, plus adds further caching abilities. +
mod_headers +
This module is much more flexible in Apache 2.0. It can now +modify request headers used by mod_proxy, and it can conditionally set +response headers. +