From 32b76bbdba19b18bc45ac7c718a72d6e9fc626f4 Mon Sep 17 00:00:00 2001 From: Christopher Luna Date: Tue, 26 Sep 2023 13:25:36 -0400 Subject: [PATCH] MaxMind requires HTTPS for database downloads MaxMind will be requiring HTTPS for all database download requests starting in March 2024. See [this release note](https://dev.maxmind.com/geoip/release-notes/2023#api-policies---temporary-enforcement-on-october-17-2023). --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 33d3e4f..1009da4 100644 --- a/Makefile +++ b/Makefile @@ -49,9 +49,9 @@ archive: package download-data: @mkdir -p data - @wget -P data/ http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz - @wget -P data/ http://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz - @wget -P data/ http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNumv6.dat.gz + @wget -P data/ https://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz + @wget -P data/ https://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz + @wget -P data/ https://download.maxmind.com/download/geoip/database/asnum/GeoIPASNumv6.dat.gz test-go: @touch xunit.xml