From a640d9bd7ff8db683b2ea92017e9561b920c39f3 Mon Sep 17 00:00:00 2001 From: Chuck Murcko Date: Tue, 24 Dec 1996 19:40:10 +0000 Subject: [PATCH] Update mod_proxy docs, add common topics section. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@77325 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_proxy.html | 48 ++++++++++++++++++++++++++++++++-- 1 file changed, 46 insertions(+), 2 deletions(-) diff --git a/docs/manual/mod/mod_proxy.html b/docs/manual/mod/mod_proxy.html index b07975723e..e414623183 100644 --- a/docs/manual/mod/mod_proxy.html +++ b/docs/manual/mod/mod_proxy.html @@ -10,10 +10,12 @@ This module is contained in the mod_proxy.c file, and is not compiled in by default. It provides for a caching proxy server. -It is only available in Apache 1.1 and later. +It is only available in Apache 1.1 and later. Common configuration +questions are addressed here.

Note:

-

This module is experimental. Use at your own risk.

+

This module was experimental in Apache 1.1.x. As of Apache 1.2, mod_proxy +stability is *greatly* improved.

Summary

@@ -206,6 +208,48 @@ cached by the proxy server. Example: NoCache joes.garage.com some.host.co.uk wotsamattau.edu +Note that 'wotsamattau' would also be sufficient to match 'wotsamattau.edu'. + +
+ +

Common configuration topics

+ + + +

Controlling access to your proxy

+ +You can control who can access your proxy via the normal <Directory> +control block using the following example:

+ +

+<Directory proxy:*>
+order allow,deny
+deny from [machines you'd like not to allow by IP address or name]
+allow from all
+</Directory>
+

+ +

Using Netscape hostname shortcuts

+ +There is an optional patch to the proxy module to allow Netscape-like +hostname shortcuts to be used. It's available + +here.

+ +

Why doesn't file type xxx download via FTP?

+ +You probably don't have that particular file type defined as +application/octet-stream in your proxy's mime.types configuration +file. A useful line can be

+ +

+application/octet-stream        bin dms lha lzh exe class tgz taz
+
+ -- 2.40.0