Loading... > Whoogle Search 是一个自我托管的、无广告的、尊重隐私的元搜索引擎。可获取 Google 搜索结果,但没有任何广告、javascript、AMP 链接、cookie 或 IP 地址跟踪。一键即可轻松部署为 Docker 应用程序,并可使用单个配置文件进行自定义。作为台式机和移动设备上的主要搜索引擎替代品,快速而简单地实施。 - 没有广告以及赞助内容 - 不追踪个人IP - Tor & HTTP/SOCKS 支持 - 设置 No JS&Cookie - 易部署 # 一、单机部署 单机部署的话非常简单,推荐直接使用Docker,一行命令搞定: ## 1、通过Docker Hub ``` shell docker pull benbusby/whoogle-search docker run --publish 5000:5000 --detach --name whoogle-search benbusby/whoogle-search:latest ``` ## 2、通过docker-compose ``` shell git clone https://github.com/benbusby/whoogle-search.git cd whoogle-search docker-compose up ``` ## 3、通过自建 ``` shell 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 ``` shell 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; } } ``` 最后修改:2022 年 09 月 03 日 © 允许规范转载 本文链接:https://m.edunote.cn/index.php/archives/50/除非注明,均默认采用CC BY-NC-SA 4.0许可协议版权声明:转载请注明文章来源 赞 如果觉得我的文章对你有用,请随意赞赏
此处评论已关闭