According to Denis Bazinet:
>
> Call me dense if it's an easy answer, but I can seem to find a way to
> have one htdig.conf file that will allow htdig to dig sites on our LAN
> and sites through a proxy server. Is there a setting that which sites
> should not use the proxy server?
>
As of 3.1.0b2, it seems to be an all or nothing deal. Either it goes
through the proxy server for everything, or it doesn't. I haven't heard
any talk of changing it in b3.
You'd need to patch htdig/Document.cc to do what you want. In the
Document::RetrieveHTTP() function (or method? - sorry, I'm not up on
my C++ terminology), you'd need to check url->host() against a list of
hosts, or url->get() against a list of URLS (which would be a new config
file parameter, like local_urls I guess) to decide whether to go through
the proxy server or not. You could use Retriever::IsLocal() as a model
for the check you'd need to implement, e.g. as a Document::IsNotProxy()
method.
The other option would be to get all the local files from the local file
system rather than going through HTTP, using the local_urls parameter.
Than would mean all your LAN sites' content would need to be mounted
(directly or via NFS) on the host running htdig.
--
Gilles R. Detillieux E-mail: <[EMAIL PROTECTED]>
Spinal Cord Research Centre WWW: http://www.scrc.umanitoba.ca/~grdetil
Dept. Physiology, U. of Manitoba Phone: (204)789-3766
Winnipeg, MB R3E 3J7 (Canada) Fax: (204)789-3930
----------------------------------------------------------------------
To unsubscribe from the htdig mailing list, send a message to
[EMAIL PROTECTED] containing the single word "unsubscribe" in
the body of the message.