Whoogle Search 是一个自我托管的、无广告的、尊重隐私的元搜索引擎。可获取 Google 搜索结果,但没有任何广告、javascript、AMP 链接、cookie 或 IP 地址跟踪。一键即可轻松部署为 Docker 应用程序,并可使用单个配置文件进行自定义。作为台式机和移动设备上的主要搜索引擎替代品,快速而简单地实施。
- 没有广告以及赞助内容
- 不追踪个人IP
- Tor & HTTP/SOCKS 支持
- 设置 No JS&Cookie
- 易部署
一、单机部署
单机部署的话非常简单,推荐直接使用Docker,一行命令搞定:
1、通过Docker Hub
1 2
| docker pull benbusby/whoogle-search docker run --publish 5000:5000 --detach --name whoogle-search benbusby/whoogle-search:latest
|
2、通过docker-compose
1 2 3
| git clone https://github.com/benbusby/whoogle-search.git cd whoogle-search docker-compose up
|
3、通过自建
1 2 3 4
| git clone https://github.com/benbusby/whoogle-search.git cd whoogle-search docker build --tag whoogle-search:1.0 . docker run --publish 5000:5000 --detach --name whoogle-search whoogle-search:1.0
|
二、设置代理及SSL
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| server { server_name your_domain_name.com; access_log /dev/null; error_log /dev/null;
location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Host $host; proxy_set_header X-NginX-Proxy true; proxy_pass http://localhost:5000; } }
|