From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <pve-devel-bounces@lists.proxmox.com> Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id BE7E81FF15C for <inbox@lore.proxmox.com>; Wed, 26 Mar 2025 11:51:54 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 30BB634944; Wed, 26 Mar 2025 11:51:49 +0100 (CET) From: Friedrich Weber <f.weber@proxmox.com> To: pve-devel@lists.proxmox.com Date: Wed, 26 Mar 2025 11:51:07 +0100 Message-Id: <20250326105108.34911-2-f.weber@proxmox.com> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20250326105108.34911-1-f.weber@proxmox.com> References: <20250326105108.34911-1-f.weber@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.010 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH storage 1/2] fix #3716: api: download from url: use proxy option for https X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion <pve-devel.lists.proxmox.com> List-Unsubscribe: <https://lists.proxmox.com/cgi-bin/mailman/options/pve-devel>, <mailto:pve-devel-request@lists.proxmox.com?subject=unsubscribe> List-Archive: <http://lists.proxmox.com/pipermail/pve-devel/> List-Post: <mailto:pve-devel@lists.proxmox.com> List-Help: <mailto:pve-devel-request@lists.proxmox.com?subject=help> List-Subscribe: <https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel>, <mailto:pve-devel-request@lists.proxmox.com?subject=subscribe> Reply-To: Proxmox VE development discussion <pve-devel@lists.proxmox.com> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" <pve-devel-bounces@lists.proxmox.com> The web UI uses the download-url endpoint for downloading an ISO, VZ template, or OVA file via wget. In a setup where this request has to go over a proxy (configured in the http_proxy datacenter option), the download only works for http:// URLs, not https:// URLs. The reason is that the download-url handler does not pass the https_proxy option to the download_file_from_url helper, hence the helper only sets the http_proxy environment variable for wget, not the https_proxy one. Fix this by also passing the https_proxy option to the download_file_from_url helper. This will break setups that rely on http_proxy not being respected for https:// URLs. For example, setups that have a proxy for external connections, but download e.g. ISO files (only) via https from an internal repository that the proxy doesn't serve. Signed-off-by: Friedrich Weber <f.weber@proxmox.com> --- src/PVE/API2/Storage/Status.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/src/PVE/API2/Storage/Status.pm b/src/PVE/API2/Storage/Status.pm index c854b53..28362ca 100644 --- a/src/PVE/API2/Storage/Status.pm +++ b/src/PVE/API2/Storage/Status.pm @@ -700,6 +700,7 @@ __PACKAGE__->register_method({ hash_required => 0, verify_certificates => $param->{'verify-certificates'} // 1, http_proxy => $dccfg->{http_proxy}, + https_proxy => $dccfg->{http_proxy}, }; my ($checksum, $checksum_algorithm) = $param->@{'checksum', 'checksum-algorithm'}; -- 2.39.5 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel