From d1cca1b744d7a870c758be0a51f1c52095bd90a8 Mon Sep 17 00:00:00 2001 From: Mofidul Jamal Date: Fri, 29 Dec 2023 15:23:52 -0500 Subject: [PATCH] windows: update libressl url Windows 10 does not support TLS 1.3 and the Cloudflare mirror only offers TLS 1.3. To remedy, revert to the canonical release directory. --- windows/const.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/const.ps1 b/windows/const.ps1 index 7ee15c4b..ecb33a3c 100644 --- a/windows/const.ps1 +++ b/windows/const.ps1 @@ -5,7 +5,7 @@ # LibreSSL coordinates. New-Variable -Name 'LIBRESSL_URL' ` - -Value 'https://cloudflare.cdn.openbsd.org/pub/OpenBSD/LibreSSL' ` + -Value 'https://ftp.openbsd.org/pub/OpenBSD/LibreSSL' ` -Option Constant New-Variable -Name 'LIBRESSL' -Value 'libressl-3.8.2' -Option Constant New-Variable -Name 'CRYPTO_LIBRARIES' -Value 'crypto' -Option Constant