有什么用
- 尊重隐私,服务器端没有痕迹
-
详细说明:https://searx.github.io/searx/index.html
-
可以搜索到很多信息
-
可以分类搜索结果:文件,图片,音乐,新闻,学术,视频等等
-
特点:
| 英文 | 中文 |
| ———————————————————— | ———————————————————— |
| Features
– Self hosted
– No user tracking
– No user profiling
– About 70 supported search engines
– Easy integration with any search engine
– Cookies are not used by default
– Secure, encrypted connections (HTTPS/SSL)
– Hosted by organizations, such as La Quadrature du Net, which promote digital rights | 特点:
– 自托管
– 不追踪用户
– 不创建用户档案
– 支持约70种搜索引擎
– 与任何搜索引擎轻松集成
– 默认不使用 Cookie
– 安全、加密连接(HTTPS/SSL)
– 由倡导数字权利的组织托管,例如 La Quadrature du Net |
怎么用
试用地址:https://proxy2.carlzeng.com:4443/
相关内容
实现方法
docker-compose.yml
version: "3"
services:
searx:
volumes:
- ./searx:/etc/searx
ports:
- 8099:8080
environment:
- BASE_URL=http://localhost:8099/
restart: always
image: searx/searx
设置的说明 searx > settings.yml
searxng聚合搜索站 设置代理
outgoing: # communication with search engines
request_timeout : 2.0 # default timeout in seconds, can be override by engine
# max_request_timeout: 10.0 # the maximum timeout in seconds
useragent_suffix : "" # information like an email address to the administrator
pool_connections : 100 # Number of different hosts
pool_maxsize : 10 # Number of simultaneous requests by host
# uncomment below section if you want to use a proxy
proxies:
http:
- http://192.168.6.116:8080
# - http://proxy2:8080
socks:
- socks5://192.168.6.116:8080
https:
- http://192.168.6.116:8080
proxies :
Define one or more proxies you wish to use, see requests proxies. If there are more than one proxy for one protocol (http, https), requests to the engines are distributed in a round-robin fashion.
如何去掉一大堆没用的语言
Search language
调整settings.yml中的Locales(删除结尾的那一大段语言;然后设置默认UI语言),只是调整了Change the language of the layout
算了,没必要去删除;
因为搜索的结果默认是 English(US)的结果;如果去手动选择切换语言代表你要搜索特定语言环境内容的结果,而这个需求没有太必要
由于背后的代理服务器是日本的IP,导致Google搜索结果会出来一些日文的结果
如何调整页面上的行数
提交搜索后,页面大概默认显示:9 – 11行的结果
page size
Question: Increase results per page #1585
Related to #2505. Searx do not control this ability to set more results per page.

发表回复