From d3cf6208b303b57fc4fa5d0be07c40558acd4451 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Sat, 22 Feb 1997 17:22:32 +0000 Subject: [PATCH] Add documentation for nokeepalive and force-response-1.0. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@77674 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/env.html | 30 ++++++++++++++++++++++++++++++ docs/manual/env.html.en | 30 ++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 docs/manual/env.html create mode 100644 docs/manual/env.html.en diff --git a/docs/manual/env.html b/docs/manual/env.html new file mode 100644 index 0000000000..fbecf41bb7 --- /dev/null +++ b/docs/manual/env.html @@ -0,0 +1,30 @@ + + + +Special Purpose Environment Variables + + + + +

Special Purpose Environment Variables

+

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.

+

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 +
+

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. + + + + diff --git a/docs/manual/env.html.en b/docs/manual/env.html.en new file mode 100644 index 0000000000..fbecf41bb7 --- /dev/null +++ b/docs/manual/env.html.en @@ -0,0 +1,30 @@ + + + +Special Purpose Environment Variables + + + + +

Special Purpose Environment Variables

+

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.

+

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 +
+

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. + + + + -- 2.50.1