diff options
| author | Dalf <alex@al-f.net> | 2015-06-06 19:23:07 +0200 |
|---|---|---|
| committer | Dalf <alex@al-f.net> | 2015-06-06 19:23:07 +0200 |
| commit | 9e147d91f041e28240e5782ba2223a18f9ddd3b1 (patch) | |
| tree | e9d724572e0f780c24942d664ad1312607949a45 /searx/engines | |
| parent | 4e28f12bfcc73b47f382bceedb5b65ee314674ae (diff) | |
bing_images & www1x engines use https connections
Diffstat (limited to 'searx/engines')
| -rw-r--r-- | searx/engines/bing_images.py | 2 | ||||
| -rw-r--r-- | searx/engines/www1x.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/searx/engines/bing_images.py b/searx/engines/bing_images.py index b06a57edc..839b8e5be 100644 --- a/searx/engines/bing_images.py +++ b/searx/engines/bing_images.py @@ -28,7 +28,7 @@ safesearch = True # search-url base_url = 'https://www.bing.com/' search_string = 'images/search?{query}&count=10&first={offset}' -thumb_url = "http://ts1.mm.bing.net/th?id={ihk}" # no https, bad certificate +thumb_url = "https://www.bing.com/th?id={ihk}" # safesearch definitions safesearch_types = {2: 'STRICT', diff --git a/searx/engines/www1x.py b/searx/engines/www1x.py index 12868ad22..2b67a8d5e 100644 --- a/searx/engines/www1x.py +++ b/searx/engines/www1x.py @@ -21,7 +21,7 @@ categories = ['images'] paging = False # search-url, no HTTPS (there is a valid certificate for https://api2.1x.com/ ) -base_url = 'http://1x.com' +base_url = 'https://1x.com' search_url = base_url+'/backend/search.php?{query}' |