From eafd79b00c22c6863af18ff0b085b174e86657c4 Mon Sep 17 00:00:00 2001 From: Christopher Luna Date: Tue, 26 Sep 2023 13:38:57 -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.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.in b/Makefile.in index f44cd028..cea59e2d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -164,10 +164,10 @@ geoip: cp ~/dat_files/* httpdocs/geoip; gunzip -f httpdocs/geoip/*.dat.gz ; \ else \ cd httpdocs/geoip; \ - wget -nc http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz; \ - wget -nc http://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz; \ - wget -nc http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz; \ - wget -nc http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNumv6.dat.gz; \ + wget -nc https://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz; \ + wget -nc https://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz; \ + wget -nc https://download.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz; \ + wget -nc https://download.maxmind.com/download/geoip/database/asnum/GeoIPASNumv6.dat.gz; \ gunzip -f *.dat.gz ; \ fi