diff --git a/glances/plugins/glances_ip.py b/glances/plugins/glances_ip.py index 160baa578e..bfb2ff10f2 100644 --- a/glances/plugins/glances_ip.py +++ b/glances/plugins/glances_ip.py @@ -45,9 +45,9 @@ # - url: URL of the Web site # - json: service return a JSON (True) or string (False) # - key: key of the IP addresse in the JSON structure -urls = [('http://ip.42.pl/raw', False, None), - ('http://httpbin.org/ip', True, 'origin'), - ('http://jsonip.com', True, 'ip'), +urls = [('https://ip.42.pl/raw', False, None), + ('https://httpbin.org/ip', True, 'origin'), + ('https://jsonip.com', True, 'ip'), ('https://api.ipify.org/?format=json', True, 'ip')]