Vraagje...

Hieronder een gedeelte van het script cgiproxy van James Marshal. Hoe kan ik deze wijzigen om https sites te kunnen bezoeken?

# Set HTTP and SSL proxies if needed. Also see $USE_PASSIVE_FTP_MODE below.
# The format of the first two variables is "host : port", with the port being
# optional. The format of $NO_PROXY is a comma-separated list of hostnames
# or domains: any request for a hostname that ends in one of the strings in
# $NO_PROXY will not use the HTTP or SSL proxy; e.g. use ".mycompany.com" to
# avoid using the proxies to access any host in the mycompany.com domain.
# The environment variables in the examples below are appropriate defaults,
# if they are available. Note that earlier versions of this script used
# the environment variables directly, instead of the $HTTP_PROXY and
# $NO_PROXY variables we use now.
# Sometimes you can use the same proxy (like Squid) for both SSL and normal
# HTTP, in which case $HTTP_PROXY and $SSL_PROXY will be the same.
# $NO_PROXY applies to both SSL and normal HTTP proxying, which is usually
# appropriate. If there's demand to differentiate those, it wouldn't be
# hard to make a separate $SSL_NO_PROXY option.
#$HTTP_PROXY= $ENV{'http_proxy'} ;
#$SSL_PROXY= 'firewall.example.com:3128' ;
#$NO_PROXY= $ENV{'no_proxy'} ;

Ik neem aan dat ik in het juiste gedeelte van het script aan het zoeken ben.

By the weg, ik draai dit script op een Windows 2003 server.