1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE>Apache module mod_proxy</TITLE>
</HEAD>
<!-- Background white, links blue (unvisited), navy (visited), red (active) -->
<BODY
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#000080"
ALINK="#FF0000"
>
<!--#include virtual="header.html" -->
<H1 ALIGN="CENTER">Apache module mod_proxy</H1>
This module is contained in the <CODE>mod_proxy.c</CODE> file for Apache 1.1.x,
or the <CODE>modules/proxy</CODE> subdirectory for Apache 1.2, and
is not compiled in by default. It provides for an <STRONG>HTTP
1.0</STRONG> caching proxy
server. It is only available in Apache 1.1 and later. Common configuration
questions are addressed <A HREF="#configs">after the directive
descriptions</A>.
<h3>Note:</h3>
<P>This module was experimental in Apache 1.1.x. As of Apache 1.2, mod_proxy
stability is <EM>greatly</EM> improved.<P>
<h2>Summary</h2>
This module implements a proxy/cache for Apache. It implements
proxying capability for
<CODE>FTP</CODE>,
<CODE>CONNECT</CODE> (for SSL),
<CODE>HTTP/0.9</CODE>, and
<CODE>HTTP/1.0</CODE>.
The module can be configured to connect to other proxy modules for these
and other protocols.
<h2>Directives</h2>
<UL>
<LI><A HREF="#proxyrequests">ProxyRequests</A>
<LI><A HREF="#proxyremote">ProxyRemote</A>
<LI><A HREF="#proxypass">ProxyPass</A>
<LI><A HREF="#proxyblock">ProxyBlock</A>
<LI><A HREF="#noproxy">NoProxy</A>
<LI><A HREF="#proxydomain">ProxyDomain</A>
<LI><A HREF="#cacheroot">CacheRoot</A>
<LI><A HREF="#cachesize">CacheSize</A>
<LI><A HREF="#cachemaxexpire">CacheMaxExpire</A>
<LI><A HREF="#cachedefaultexpire">CacheDefaultExpire</A>
<LI><A HREF="#cachelastmodifiedfactor">CacheLastModifiedFactor</A>
<LI><A HREF="#cachegcinterval">CacheGcInterval</A>
<LI><A HREF="#cachedirlevels">CacheDirLevels</A>
<LI><A HREF="#cachedirlength">CacheDirLength</A>
<LI><A HREF="#nocache">NoCache</A>
</UL>
<HR>
<A name="proxyrequests"><h2>ProxyRequests</h2></A>
<STRONG>Syntax:</STRONG> ProxyRequests <EM>on/off</EM><BR>
<STRONG>Default:</STRONG> <CODE>ProxyRequests Off</CODE><BR>
<STRONG>Context:</STRONG> server config, virtual host<BR>
<STRONG>Override:</STRONG> <EM>Not applicable</EM><BR>
<STRONG>Status:</STRONG> Base<BR>
<STRONG>Module:</STRONG> mod_proxy<BR>
<STRONG>Compatibility:</STRONG> ProxyRequests is only available in
Apache 1.1 and later.<P>
This allows or prevents Apache from functioning as a proxy
server. Setting ProxyRequests to 'off' does not disable use of the <A
HREF="#proxypass">ProxyPass</A> directive.
<HR>
<A name="proxyremote"><h2>ProxyRemote</h2></A>
<STRONG>Syntax:</STRONG> ProxyRemote <EM><match> <remote-server></EM><BR>
<STRONG>Default:</STRONG> <EM>None</EM><BR>
<STRONG>Context:</STRONG> server config, virtual host<BR>
<STRONG>Override:</STRONG> <EM>Not applicable</EM><BR>
<STRONG>Status:</STRONG> Base<BR>
<STRONG>Module:</STRONG> mod_proxy<BR>
<STRONG>Compatibility:</STRONG> ProxyRemote is only available in
Apache 1.1 and later.<P>
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:
<PRE>
<remote-server> = <protocol>://<hostname>[:port]
</PRE>
<protocol> is the protocol that should be used to communicate
with the remote server; only "http" is supported by this module.
<P>
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.
<HR>
<A name="proxypass"><h2>ProxyPass</h2></A>
<STRONG>Syntax:</STRONG> ProxyPass <EM><path> <url></EM><BR>
<STRONG>Default:</STRONG> <EM>None</EM><BR>
<STRONG>Context:</STRONG> server config, virtual host<BR>
<STRONG>Override:</STRONG> <EM>Not applicable</EM><BR>
<STRONG>Status:</STRONG> Base<BR>
<STRONG>Module:</STRONG> mod_proxy<BR>
<STRONG>Compatibility:</STRONG> ProxyPass is only available in
Apache 1.1 and later.<P>
This directive allows remote servers to be mapped into the space of the local
server; the local server does not act as a proxy in the conventional sense,
but appears to be a mirror of the remote server. <path> is the name of
a local virtual path; <url> is a partial URL for the remote server.
<P>
Suppose the local server has address <SAMP>http://wibble.org/</SAMP>; then
<PRE>
ProxyPass /mirror/foo http://foo.com
</PRE>
will cause a local request for the
<<SAMP>http://wibble.org/mirror/foo/bar</SAMP>> to be
internally converted into a proxy request to
<<SAMP>http://foo.com/bar</SAMP>>.
<HR>
<A name="proxyblock"><h2>ProxyBlock</h2></A>
<STRONG>Syntax:</STRONG> ProxyBlock <EM><word/host/domain list></EM><BR>
<STRONG>Default:</STRONG> <EM>None</EM><BR>
<STRONG>Context:</STRONG> server config, virtual host<BR>
<STRONG>Override:</STRONG> <EM>Not applicable</EM><BR>
<STRONG>Status:</STRONG> Base<BR>
<STRONG>Module:</STRONG> mod_proxy<BR>
<STRONG>Compatibility:</STRONG> ProxyBlock is only available in
Apache 1.2 and later.<P>
The ProxyBlock directive specifies a list of words, hosts and/or domains,
separated by spaces. HTTP, HTTPS, and FTP document requests to matched words,
hosts or domains are <EM>blocked</EM> by the proxy server. The proxy module
will also attempt to determine IP addresses of list items which may be
hostnames during startup, and cache them for match test as well. Example:
<PRE>
ProxyBlock joes_garage.com some_host.co.uk rocky.wotsamattau.edu
</PRE>
'rocky.wotsamattau.edu' would also be matched if referenced by IP address.<P>
Note that 'wotsamattau' would also be sufficient to match 'wotsamattau.edu'.<P>
Note also that
<PRE>
ProxyBlock *
</PRE>
blocks connections to all sites.
<HR>
<A name="noproxy"><h2>NoProxy</h2></A>
<STRONG>Syntax:</STRONG> NoProxy { <A HREF="#domain"><EM><Domain></EM></A>
| <A HREF="#subnet"><EM><SubNet></EM></A>
| <A HREF="#ipaddr"><EM><IpAddr></EM></A>
| <A HREF="#hostname"><EM><Hostname></EM></A>
} <BR>
<STRONG>Default:</STRONG> <EM>None</EM><BR>
<STRONG>Context:</STRONG> server config, virtual host<BR>
<STRONG>Override:</STRONG> <EM>Not applicable</EM><BR>
<STRONG>Status:</STRONG> Base<BR>
<STRONG>Module:</STRONG> mod_proxy<BR>
<STRONG>Compatibility:</STRONG> NoProxy is only available in
Apache 1.3 and later.<P>
This directive is only useful for Apache proxy servers within intranets.
The NoProxy directive specifies a list of subnets, IP addresses, hosts
and/or domains, separated by spaces. A request to a host which matches
one or more of these is always served directly, without forwarding to
the configured ProxyRemote proxy server(s).
<P>
Example:
<PRE>
ProxyRemote * http://firewall.mycompany.com:81
NoProxy .mycompany.com 192.168.112.0/21
</PRE>
The arguments to the NoProxy directive are one of the following type list:
<DL>
<!-- ===================== Domain ======================= -->
<A NAME="domain">
<DT><EM>Domain</EM></A>
<DD>A <EM>Domain</EM> is a partially qualified DNS domain name, preceded
by a period.
It represents a list of hosts which logically belong to the same DNS
domain or zone (i.e. the suffixes of the hostnames are all ending in
<EM>Domain</EM>).<BR>
Examples: <SAMP>.com</SAMP> <SAMP>.apache.org.</SAMP><BR>
To distinguish <EM>Domain</EM>s from <A HREF="#hostname"><EM>Hostname</EM></A>s (both
syntactically and semantically; a DNS domain can have a DNS A record,
too!), <EM>Domain</EM>s are always written
with a leading period.<BR>
Note: Domain name comparisons are done without regard to the case,
and <EM>Domain</EM>s are always assumed to be anchored in the root
of the DNS tree, therefore two domains <SAMP>.MyDomain.com</SAMP> and
<SAMP>.mydomain.com.</SAMP> (note the trailing period) are
considered equal. Since a domain comparison does not involve a DNS
lookup, it is much more efficient than subnet comparison.
<!-- ===================== SubNet ======================= -->
<A NAME="subnet">
<DT><EM>SubNet</EM></A>
<DD>A <EM>SubNet</EM> is a partially qualified internet address in
numeric (dotted quad) form, optionally followed by a slash and the
netmask, specified as the number of significant bits in the
<EM>SubNet</EM>. It is used to represent a subnet of hosts which can
be reached over a common network interface. In the absence of the
explicit net mask it is assumed that omitted (or zero valued)
trailing digits specify the mask. (In this case, the netmask can
only be multiples of 8 bits wide.)<BR>
Examples:
<DL>
<DT><SAMP>192.168</SAMP> or <SAMP>192.168.0.0</SAMP>
<DD>the subnet 192.168.0.0 with an implied netmask of 16 valid bits
(sometimes used in the netmask form <SAMP>255.255.0.0</SAMP>)
<DT><SAMP>192.168.112.0/21</SAMP>
<DD>the subnet <SAMP>192.168.112.0/21</SAMP> with a netmask of 21
valid bits (also used in the form 255.255.248.0)
</DL>
As a degenerate case, a <EM>SubNet</EM> with 32 valid bits is the
equivalent to an <EM>IPAddr</EM>, while a <EM>SubNet</EM> with zero
valid bits (e.g., 0.0.0.0/0) is the same as the constant
<EM>_Default_</EM>, matching any IP address.
<!-- ===================== IPAddr ======================= -->
<A NAME="ipaddr">
<DT><EM>IPAddr</EM></A>
<DD>A <EM>IPAddr</EM> represents a fully qualified internet address in
numeric (dotted quad) form. Usually, this address represents a
host, but there need not necessarily be a DNS domain name
connected with the address.<BR>
Example: 192.168.123.7<BR>
Note: An <EM>IPAddr</EM> does not need to be resolved by the DNS
system, so it can result in more effective apache performance.
<P><STRONG>See Also:</STRONG>
<A HREF="../dns-caveats.html">DNS Issues</A></P>
<!-- ===================== Hostname ======================= -->
<A NAME="hostname">
<DT><EM>Hostname</EM></A>
<DD>A <EM>Hostname</EM> is a fully qualified DNS domain name which can
be resolved to one or more <A
HREF="#ipaddr"><EM>IPAddrs</EM></A> via the DNS domain name service.
It represents a logical host (in contrast to
<A HREF="#domain"><EM>Domain</EM></A>s, see
above) and must be resolvable to at least one <A
HREF="#ipaddr"><EM>IPAddr</EM></A> (or often to a list of hosts
with different <A HREF="#ipaddr"><EM>IPAddr</EM></A>'s).<BR>
Examples: <SAMP>prep.ai.mit.edu</SAMP>
<SAMP>www.apache.org.</SAMP><BR>
Note: In many situations, it is more effective to specify an
<A HREF="#ipaddr"><EM>IPAddr</EM></A> in place of a
<EM>Hostname</EM> since a DNS lookup
can be avoided. Name resolution in Apache can take a remarkable deal
of time when the connection to the name server uses a slow PPP
link.<BR>
Note: <EM>Hostname</EM> comparisons are done without regard to the case,
and <EM>Hostname</EM>s are always assumed to be anchored in the root
of the DNS tree, therefore two hosts <SAMP>WWW.MyDomain.com</SAMP>
and <SAMP>www.mydomain.com.</SAMP> (note the trailing period) are
considered equal.<BR>
<P><STRONG>See Also:</STRONG>
<A HREF="../dns-caveats.html">DNS Issues</A></P>
</DL>
<HR>
<A name="proxydomain"><h2>ProxyDomain</h2></A>
<STRONG>Syntax:</STRONG> ProxyDomain <EM><Domain></EM><BR>
<STRONG>Default:</STRONG> <EM>None</EM><BR>
<STRONG>Context:</STRONG> server config, virtual host<BR>
<STRONG>Override:</STRONG> <EM>Not applicable</EM><BR>
<STRONG>Status:</STRONG> Base<BR>
<STRONG>Module:</STRONG> mod_proxy<BR>
<STRONG>Compatibility:</STRONG> ProxyDomain is only available in
Apache 1.3 and later.<P>
This directive is only useful for Apache proxy servers within intranets.
The ProxyDomain directive specifies the default domain which the apache
proxy server will belong to. If a request to a host without a domain name
is encountered, a redirection response to the same host
with the configured <EM>Domain</EM> appended will be generated.
<P>
Example:
<PRE>
ProxyRemote * http://firewall.mycompany.com:81
NoProxy .mycompany.com 192.168.112.0/21
ProxyDomain .mycompany.com
</PRE>
<HR>
<A name="cacheroot"><h2>CacheRoot</h2></A>
<STRONG>Syntax:</STRONG> CacheRoot <EM><directory></EM><BR>
<STRONG>Default:</STRONG> <EM>None</EM><BR>
<STRONG>Context:</STRONG> server config, virtual host<BR>
<STRONG>Override:</STRONG> <EM>Not applicable</EM><BR>
<STRONG>Status:</STRONG> Base<BR>
<STRONG>Module:</STRONG> mod_proxy<BR>
<STRONG>Compatibility:</STRONG> CacheRoot is only available in
Apache 1.1 and later.<P>
Sets the name of the directory to contain cache files; this must be
writable
by the httpd server.
<HR>
<A name="cachesize"><h2>CacheSize</h2></A>
<STRONG>Syntax:</STRONG> CacheSize <EM><size></EM><BR>
<STRONG>Default:</STRONG> <CODE>CacheSize 5</CODE><BR>
<STRONG>Context:</STRONG> server config, virtual host<BR>
<STRONG>Override:</STRONG> <EM>Not applicable</EM><BR>
<STRONG>Status:</STRONG> Base<BR>
<STRONG>Module:</STRONG> mod_proxy<BR>
<STRONG>Compatibility:</STRONG> CacheSize is only available in
Apache 1.1 and later.<P>
Sets the desired space usage of the cache, in KB (1024-byte units). Although
usage may grow above this setting, the garbage collection will delete files
until the usage is at or below this setting.
<HR>
<A name="cachegcinterval"><h2>CacheGcInterval</h2></A>
<STRONG>Syntax:</STRONG> CacheGcInterval <EM><time></EM><BR>
<STRONG>Default:</STRONG> <EM>None</EM><BR>
<STRONG>Context:</STRONG> server config, virtual host<BR>
<STRONG>Override:</STRONG> <EM>Not applicable</EM><BR>
<STRONG>Status:</STRONG> Base<BR>
<STRONG>Module:</STRONG> mod_proxy<BR>
<STRONG>Compatibility:</STRONG> CacheGcinterval is only available in
Apache 1.1 and later.<P>
Check the cache every <time> hours, and delete files if the space
usage is greater than that set by CacheSize.
<HR>
<A name="cachemaxexpire"><h2>CacheMaxExpire</h2></A>
<STRONG>Syntax:</STRONG> CacheMaxExpire <EM><time></EM><BR>
<STRONG>Default:</STRONG> <CODE>CacheMaxExpire 24</CODE><BR>
<STRONG>Context:</STRONG> server config, virtual host<BR>
<STRONG>Override:</STRONG> <EM>Not applicable</EM><BR>
<STRONG>Status:</STRONG> Base<BR>
<STRONG>Module:</STRONG> mod_proxy<BR>
<STRONG>Compatibility:</STRONG> CacheMaxExpire is only available in
Apache 1.1 and later.<P>
Cachable HTTP documents will be retained for at most <time> hours without
checking the origin server. Thus documents can be at most <time>
hours out of date. This restriction is enforced even if an expiry date
was supplied with the document.
<HR>
<A name="cachelastmodifiedfactor"><h2>CacheLastModifiedFactor</h2></A>
<STRONG>Syntax:</STRONG> CacheLastModifiedFactor <EM><factor></EM><BR>
<STRONG>Default:</STRONG> <CODE>CacheLastModifiedFactor 0.1</CODE><BR>
<STRONG>Context:</STRONG> server config, virtual host<BR>
<STRONG>Override:</STRONG> <EM>Not applicable</EM><BR>
<STRONG>Status:</STRONG> Base<BR>
<STRONG>Module:</STRONG> mod_proxy<BR>
<STRONG>Compatibility:</STRONG> CacheLastModifiedFactor is only available in
Apache 1.1 and later.<P>
If the origin HTTP server did not supply an expiry date for the
document, then estimate one using the formula
<PRE>
expiry-period = time-since-last-modification * <factor>
</PRE>
For example, if the document was last modified 10 hours ago, and
<factor> is 0.1, then the expiry period will be set to 10*0.1 = 1 hour.
<P>If the expiry-period would be longer than that set by CacheMaxExpire,
then the latter takes precedence.
<HR>
<A name="cachedirlevels"><h2>CacheDirLevels</h2></A>
<STRONG>Syntax:</STRONG> CacheDirLevels <EM><levels></EM><BR>
<STRONG>Default:</STRONG> <CODE>CacheDirLevels 3</CODE><BR>
<STRONG>Context:</STRONG> server config, virtual host<BR>
<STRONG>Override:</STRONG> <EM>Not applicable</EM><BR>
<STRONG>Status:</STRONG> Base<BR>
<STRONG>Module:</STRONG> mod_proxy<BR>
<STRONG>Compatibility:</STRONG> CacheDirLevels is only available in
Apache 1.1 and later.<P>
CacheDirLevels sets the number of levels of subdirectories in the cache.
Cached data will be saved this many directory levels below CacheRoot.
<HR>
<A name="cachedirlength"><h2>CacheDirLength</h2></A>
<STRONG>Syntax:</STRONG> CacheDirLength <EM><length></EM><BR>
<STRONG>Default:</STRONG> <CODE>CacheDirLength 1</CODE><BR>
<STRONG>Context:</STRONG> server config, virtual host<BR>
<STRONG>Override:</STRONG> <EM>Not applicable</EM><BR>
<STRONG>Status:</STRONG> Base<BR>
<STRONG>Module:</STRONG> mod_proxy<BR>
<STRONG>Compatibility:</STRONG> CacheDirLength is only available in
Apache 1.1 and later.<P>
CacheDirLength sets the number of characters in proxy cache subdirectory names.
<HR>
<A name="cachedefaultexpire"><h2>CacheDefaultExpire</h2></A>
<STRONG>Syntax:</STRONG> CacheDefaultExpire <EM><time></EM><BR>
<STRONG>Default:</STRONG> <CODE>CacheDefaultExpire 1</CODE><BR>
<STRONG>Context:</STRONG> server config, virtual host<BR>
<STRONG>Override:</STRONG> <EM>Not applicable</EM><BR>
<STRONG>Status:</STRONG> Base<BR>
<STRONG>Module:</STRONG> mod_proxy<BR>
<STRONG>Compatibility:</STRONG> CacheDefaultExpire is only available in
Apache 1.1 and later.<P>
If the document is fetched via a protocol that does not support expiry times,
then use <time> hours as the expiry time.
<A HREF="#cachemaxexpire">CacheMaxExpire</A> does <STRONG>not</STRONG>
override this setting.
<HR>
<A name="nocache"><h2>NoCache</h2></A>
<STRONG>Syntax:</STRONG> NoCache <EM><word/host/domain list></EM><BR>
<STRONG>Default:</STRONG> <EM>None</EM><BR>
<STRONG>Context:</STRONG> server config, virtual host<BR>
<STRONG>Override:</STRONG> <EM>Not applicable</EM><BR>
<STRONG>Status:</STRONG> Base<BR>
<STRONG>Module:</STRONG> mod_proxy<BR>
<STRONG>Compatibility:</STRONG> NoCache is only available in
Apache 1.1 and later.<P>
The NoCache directive specifies a list of words, hosts and/or domains, separated
by spaces. HTTP and non-passworded FTP documents from matched words, hosts or
domains are <EM>not</EM> cached by the proxy server. The proxy module will
also attempt to determine IP addresses of list items which may be hostnames
during startup, and cache them for match test as well. Example:
<PRE>
NoCache joes_garage.com some_host.co.uk bullwinkle.wotsamattau.edu
</PRE>
'bullwinkle.wotsamattau.edu' would also be matched if referenced by IP
address.<P>
Note that 'wotsamattau' would also be sufficient to match 'wotsamattau.edu'.<P>
Note also that
<PRE>
NoCache *
</PRE>
disables caching completely.<P>
<HR>
<A name="configs"><h2>Common configuration topics</h2></A>
<UL>
<LI><A HREF="#access">Controlling access to your proxy</A>
<LI><A HREF="#shortname">Using Netscape hostname shortcuts</A>
<LI><A HREF="#mimetypes">Why doesn't file type <EM>xxx</EM> download via FTP?</A>
<LI><A HREF="#startup">Why does Apache start more slowly when using the
proxy module?</A>
<LI><A HREF="#socks">Can I use the Apache proxy module with my SOCKS proxy?</A>
<LI><A HREF="#intranet">What other functions are useful for an intranet proxy server?</A>
</UL>
<h2><A name="access">Controlling access to your proxy</A></h2>
You can control who can access your proxy via the normal <Directory>
control block using the following example:<P>
<PRE>
<Directory proxy:*>
<Limit GET PUT POST DELETE CONNECT OPTIONS>
order deny,allow
deny from [machines you'd like *not* to allow by IP address or name]
allow from [machines you'd like to allow by IP address or name]
</Limit>
</Directory>
</PRE><P>
A <Files> block will also work, and is the only method known to work
for all possible URLs in Apache versions earlier than 1.2b10.<P>
<h2><A name="shortname">Using Netscape hostname shortcuts</A></h2>
There is an optional patch to the proxy module to allow Netscape-like
hostname shortcuts to be used. It's available
<A HREF="http://www.apache.org/dist/contrib/patches/1.2/netscapehost.patch">
here</A>.<P>
<h2><A name="mimetypes">Why doesn't file type <EM>xxx</EM> download via FTP?</A></h2>
You probably don't have that particular file type defined as
<EM>application/octet-stream</EM> in your proxy's mime.types configuration
file. A useful line can be<P>
<PRE>
application/octet-stream bin dms lha lzh exe class tgz taz
</PRE>
<h2><A name="type">How can I force an FTP ASCII download of File <EM>xxx</EM>?</A></h2>
In the rare situation where you must download a specific file using the FTP
<STRONG>ASCII</STRONG> transfer method (while the default transfer is in
<STRONG>binary</STRONG> mode), you can override mod_proxy's default by
suffixing the request with <SAMP>;type=a</SAMP> to force an ASCII transfer.<P>
<h2><A name="startup">Why does Apache start more slowly when using the
proxy module?</A></h2>
If you're using the <CODE>ProxyBlock</CODE> or <CODE>NoCache</CODE>
directives, hostnames' IP addresses are looked up and cached during
startup for later match test. This may take a few seconds (or more)
depending on the speed with which the hostname lookups occur.<P>
<h2><A name="socks">Can I use the Apache proxy module with my SOCKS proxy?</A></h2>
Yes. Just build Apache with the rule <CODE>SOCKS4=yes</CODE> in your
<EM>Configuration</EM> file, and follow the instructions there. SOCKS5
capability can be added in a similar way (there's no <CODE>SOCKS5</CODE>
rule yet), so use the <CODE>EXTRA_LDFLAGS</CODE> definition, or build Apache
normally and run it with the <EM>runsocks</EM> wrapper provided with SOCKS5,
if your OS supports dynamically linked libraries.<P>
Some users have reported problems when using SOCKS version 4.2 on Solaris.
The problem was solved by upgrading to SOCKS 4.3.<P>
Remember that you'll also have to grant access to your Apache proxy machine by
permitting connections on the appropriate ports in your SOCKS daemon's
configuration.<P>
<h2><A name="intranet">What other functions are useful for an intranet proxy server?</A></h2>
<P>An Apache proxy server situated in an intranet needs to forward external
requests through the company's firewall. However, when it has to access
resources within the intranet, it can bypass the firewall when accessing
hosts. The <A HREF="#noproxy">NoProxy</A> directive is useful for specifying
which hosts belong to the intranet and should be accessed directly.</P>
<P>Users within an intranet tend to omit the local domain name from their
WWW requests, thus requesting "http://somehost/" instead of
"http://somehost.my.dom.ain/". Some commercial proxy servers let them get
away with this and simply serve the request, implying a configured
local domain. When the <A HREF="#proxydomain">ProxyDomain</A> directive
is used and the server is <A HREF="#proxyrequests">configured for
proxy service</A>, Apache can return a redirect response and send the client
to the correct, fully qualified, server address. This is the preferred method
since the user's bookmark files will then contain fully qualified hosts.</P>
<!--#include virtual="footer.html" -->
</BODY>
</HTML>
|