From 2e710e927d867c8a05e63c6cccf498b9e7a50d73 Mon Sep 17 00:00:00 2001 From: Ken Coar Date: Tue, 4 May 1999 19:17:37 +0000 Subject: [PATCH] Add the 'force-no-vary' envariable to the list of specials, and put the entire list into alphabetical order. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83180 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/env.html | 42 +++++++++++++++++++++++++++++------------ docs/manual/env.html.en | 42 +++++++++++++++++++++++++++++------------ 2 files changed, 60 insertions(+), 24 deletions(-) diff --git a/docs/manual/env.html b/docs/manual/env.html index 6235076c4c..962dbe90ae 100644 --- a/docs/manual/env.html +++ b/docs/manual/env.html @@ -14,32 +14,50 @@ >

Special Purpose Environment Variables

-

Interoperability problems have led to the introduction of +

+Interoperability problems have led to the introduction of mechanisms to modify the way Apache behaves when talking to particular clients. To make these mechanisms as flexible as possible, they are invoked by defining environment variables, typically with BrowserMatch, though SetEnv and PassEnv could also be used, for -example.

+example. +

-

nokeepalive

-This disables KeepAlive when set. Because -of problems with Netscape 2.x and KeepAlive, we recommend the following -directive be used: -
-BrowserMatch Mozilla/2 nokeepalive -
+

downgrade-1.0

+

+This forces the request to be treated as a HTTP/1.0 request even if it +was in a later dialect. +

+ +

force-no-vary

+

+This causes any Vary fields to be removed from the response +header before it is sent back to the client. Some clients don't +interpret this field correctly (see the +known client problems +page); setting this variable can work around this problem. Setting +this variable also implies force-response-1.0. +

force-response-1.0

+

This forces an HTTP/1.0 response when set. It was originally implemented as a result of a problem with AOL's proxies. Some clients may not behave correctly when given an HTTP/1.1 response, and this can be used to interoperate with them. +

-

downgrade-1.0

-

This forces the request to be treated as a HTTP/1.0 request even if it -was in a later dialect. +

nokeepalive

+

+This disables KeepAlive when set. Because +of problems with Netscape 2.x and KeepAlive, we recommend the following +directive be used: +

+
+    BrowserMatch Mozilla/2 nokeepalive
+
diff --git a/docs/manual/env.html.en b/docs/manual/env.html.en index 6235076c4c..962dbe90ae 100644 --- a/docs/manual/env.html.en +++ b/docs/manual/env.html.en @@ -14,32 +14,50 @@ >

Special Purpose Environment Variables

-

Interoperability problems have led to the introduction of +

+Interoperability problems have led to the introduction of mechanisms to modify the way Apache behaves when talking to particular clients. To make these mechanisms as flexible as possible, they are invoked by defining environment variables, typically with BrowserMatch, though SetEnv and PassEnv could also be used, for -example.

+example. +

-

nokeepalive

-This disables KeepAlive when set. Because -of problems with Netscape 2.x and KeepAlive, we recommend the following -directive be used: -
-BrowserMatch Mozilla/2 nokeepalive -
+

downgrade-1.0

+

+This forces the request to be treated as a HTTP/1.0 request even if it +was in a later dialect. +

+ +

force-no-vary

+

+This causes any Vary fields to be removed from the response +header before it is sent back to the client. Some clients don't +interpret this field correctly (see the +known client problems +page); setting this variable can work around this problem. Setting +this variable also implies force-response-1.0. +

force-response-1.0

+

This forces an HTTP/1.0 response when set. It was originally implemented as a result of a problem with AOL's proxies. Some clients may not behave correctly when given an HTTP/1.1 response, and this can be used to interoperate with them. +

-

downgrade-1.0

-

This forces the request to be treated as a HTTP/1.0 request even if it -was in a later dialect. +

nokeepalive

+

+This disables KeepAlive when set. Because +of problems with Netscape 2.x and KeepAlive, we recommend the following +directive be used: +

+
+    BrowserMatch Mozilla/2 nokeepalive
+
-- 2.50.1