brian 96/12/08 19:34:50
Modified: htdocs/manual/mod mod_proxy.html
Log:
Obtained from: based on comments from John Line ([EMAIL PROTECTED])
Clarification.
Revision Changes Path
1.4 +6 -2 apache/htdocs/manual/mod/mod_proxy.html
Index: mod_proxy.html
===================================================================
RCS file: /export/home/cvs/apache/htdocs/manual/mod/mod_proxy.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -C3 -r1.3 -r1.4
*** mod_proxy.html 1996/12/02 18:14:11 1.3
--- mod_proxy.html 1996/12/09 03:34:49 1.4
***************
*** 64,70 ****
This defines remote proxies to this proxy. <match> is either the
name of a URL-scheme that the remote server supports, or a partial URL
! for which the remote server should be used, or '$' to indicate the
server should be contacted for all requests. <remote-server> is a
partial URL for the remote server. Syntax:
--- 64,70 ----
This defines remote proxies to this proxy. <match> is either the
name of a URL-scheme that the remote server supports, or a partial URL
! for which the remote server should be used, or '*' to indicate the
server should be contacted for all requests. <remote-server> is a
partial URL for the remote server. Syntax:
***************
*** 77,86 ****
Example:
<pre>
- ProxyRemote ftp http://ftpproxy.mydomain.com:8080
ProxyRemote http://goodguys.com/ http://mirrorguys.com:8000
ProxyRemote * http://cleversite.com
</pre>
<A name="proxypass"><h2>ProxyPass</h2></A>
<strong>Syntax:</strong> ProxyPass <em><path> <url></em><br>
--- 77,90 ----
Example:
<pre>
ProxyRemote http://goodguys.com/ http://mirrorguys.com:8000
ProxyRemote * http://cleversite.com
+ ProxyRemote ftp http://ftpproxy.mydomain.com:8080
</pre>
+
+ In the last example, the proxy will forward FTP requests, encapsulated
+ as yet another HTTP proxy request, to another proxy which can handle
+ them. Apache itself can not directly handle FTP requests currently.
<A name="proxypass"><h2>ProxyPass</h2></A>
<strong>Syntax:</strong> ProxyPass <em><path> <url></em><br>