diff options
-rw-r--r-- | VERSION | 2 | ||||
-rwxr-xr-x | urpmi-proxy.cgi | 2 | ||||
-rw-r--r-- | urpmi-proxy.conf | 3 |
3 files changed, 6 insertions, 1 deletions
@@ -1 +1 @@ -0.3.2 +0.3.3 diff --git a/urpmi-proxy.cgi b/urpmi-proxy.cgi index f439100..38c57ba 100755 --- a/urpmi-proxy.cgi +++ b/urpmi-proxy.cgi @@ -6,6 +6,7 @@ use strict; use warnings; my $debug = 0; +my $proxy = 0; my $config_file = '/etc/urpmi-proxy.conf'; # config defaults @@ -293,6 +294,7 @@ foreach my $source (@sources) { $curl->setopt(CURLOPT_TIMEVALUE, $modified_since); } $curl->setopt(CURLOPT_USERAGENT, $user_agent) if $user_agent; + $curl->setopt(CURLOPT_PROXY, $proxy) if $proxy; $curl->setopt(CURLOPT_CONNECTTIMEOUT, $connect_timeout); $curl->setopt(CURLOPT_FTP_RESPONSE_TIMEOUT, $ftp_response_timeout); $curl->setopt(CURLOPT_LOW_SPEED_LIMIT, $max_stall_speed); diff --git a/urpmi-proxy.conf b/urpmi-proxy.conf index 780469d..1775653 100644 --- a/urpmi-proxy.conf +++ b/urpmi-proxy.conf @@ -20,6 +20,9 @@ # 'urpmi' # ]; +## Define your proxy if needed in form 'hostname:port' +# $proxy = ''; + ## Location of the logfile, it's a request log with cache status results. # $logfile = '/var/log/urpmi-proxy.log'; |