commit 318e322fbc29dd20d56dc311c71ae60e010a7cdf Author: aagbsn aagbsn@extc.org Date: Sun Oct 26 11:24:49 2014 +0000
Use HTTPS URLs for MaxMind resources --- ooni/resources/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ooni/resources/__init__.py b/ooni/resources/__init__.py index e60784f..a59ea2f 100644 --- a/ooni/resources/__init__.py +++ b/ooni/resources/__init__.py @@ -25,14 +25,14 @@ inputs = {
geoip = { "GeoIPASNum.dat.gz": { - "url": "http://www.maxmind.com/download/" + "url": "https://www.maxmind.com/download/" "geoip/database/asnum/GeoIPASNum.dat.gz", "action": gunzip, "action_args": [config.advanced.geoip_data_dir], "processor": None }, "GeoIP.dat.gz": { - "url": "http://geolite.maxmind.com/" + "url": "https://geolite.maxmind.com/" "download/geoip/database/GeoLiteCountry/GeoIP.dat.gz", "action": gunzip, "action_args": [config.advanced.geoip_data_dir],
tor-commits@lists.torproject.org