From c6b5dac008f54d08fe3f04b6541ae9e52cb441f5 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Feb 20 2020 01:16:12 +0000 Subject: Use https for DL server. It has HSTS and redirects, so no point not going there directly. --- diff --git a/mdapi-get_repo_md b/mdapi-get_repo_md index f75a22d..4641a47 100755 --- a/mdapi-get_repo_md +++ b/mdapi-get_repo_md @@ -30,7 +30,7 @@ Active Fedora branches are retrieved from pkgdb2: https://admin.fedoraproject.org/pkgdb/ sqlite database are retrieved from the master Fedora mirror: - http://dl.fedoraproject.org/pub/fedora/linux/ + https://dl.fedoraproject.org/pub/fedora/linux/ ''' @@ -54,7 +54,7 @@ from fedora_messaging.exceptions import PublishReturned, ConnectionException KOJI_REPO = 'https://kojipkgs.fedoraproject.org/repos/' PKGDB2_URL = 'https://admin.fedoraproject.org/pkgdb/' -DL_SERVER = 'http://dl.fedoraproject.org' +DL_SERVER = 'https://dl.fedoraproject.org' # Enforce, or not, checking the SSL certs PKGDB2_VERIFY = True # Valid for both koji and the download server