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/www1x.py | |
parent | 4e28f12bfcc73b47f382bceedb5b65ee314674ae (diff) | |
download | searxng-9e147d91f041e28240e5782ba2223a18f9ddd3b1.tar.gz searxng-9e147d91f041e28240e5782ba2223a18f9ddd3b1.zip |
bing_images & www1x engines use https connections
Diffstat (limited to 'searx/engines/www1x.py')
-rw-r--r-- | searx/engines/www1x.py | 2 |
1 files changed, 1 insertions, 1 deletions
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}' |