Pragma: no-cache
supported; by sending this header
to the proxy the client will force it to refresh its cache from
remote server. Pragma headers are also forwarded to the remote
server.
-restart
option - httpd
will find out
the actual server process number and send s HUP signal to it to
make it reload its configuration files; note that
httpd
must still have the same configuration file
command line parameters (-r
options) as the actual
server (so it finds out the ServerRoot and PidFile).
LogFormat
directive:
LogFormat old
Pass http://*/* /mirror/*/http/*Clearly the first asterisk should rather match only the hostname, and not the entire path except the filename.
Map /* /foo/bar/*does not match user-supported directories, but:
Map /~* /Webs/users/*does match them.
Protect
'ed.
.htm
and .htmls
to the
default set of known suffixes.
CacheSize 150 M CacheLimit_1 100 K CacheLimit_2 2 MThe numbers still have to be cardinals.
MaxContentLengthBuffer
directive to specify the
maximum bytecount for the proxy to buffer in order to find out
the content-length for the client - content-length is
always calculated for the logs, but the user migth
interrupt the connection if nothing seems to be happening, even
though it is the proxy that is just buffering the entire file in
order to find out the content-length before actually sending it
to the client.
HEAD
work always, even on proxy with other
protocols (FTP, Gopher...).
httpd
will retry PORT.
ScriptTimeOut
- scripts that do not finish in
this amount of time will be killed by httpd
. Default
value is 5 minutes.
.cache_info
files
sometimes being unwritable to actual caching processes).
CacheOnly
directive for specifying a set of URLs
that should be cached (for cases when there are only a few sites
that should be cached).
DELETE-Script
directive for specifying the CGI
script to handle DELETE
method.
NoProxy
directive to allow the proxy to do direct
access to some servers instead of connecting to another proxy
server (contains a list of domain names). This works exactly
like the no_proxy
environment variable on clients.
(Thanks to Rainer Klute for the patch!) This is only necessary
when running multiple proxy servers that connect to each other.
CacheDefaultExpiry
).
GcReqInterval
and
GcTimeInterval
- not very good criteria to
start doing garbage collection (GcDailyGc
is
better, giving the actual time to lauch gc)
-a
and -R
options (never used).
BodyTimeOut
replaced by ScriptTimeOut
include
s from Makefiles (not supported by
all the make
s).
#elif
preprocessor directive removed (wasn't
supported by all the HP preprocessors)