全球主机交流论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

CeraNetworks网络延迟测速工具IP归属甄别会员请立即修改密码
查看: 6756|回复: 10

如何用 Nginx 做 google 镜像站

[复制链接]
发表于 2021-5-17 17:48:35 | 显示全部楼层 |阅读模式
本帖最后由 小脑袋困掉了 于 2021-5-17 17:50 编辑

以下是我的配置文件:
  1. server {
  2.     server_name www.example.com;

  3.     location / {
  4.         proxy_pass https://www.google.com/;

  5.         proxy_redirect https://www.google.com/ /;
  6.         # proxy_redirect off;
  7.         proxy_cookie_domain google.com www.example.com;

  8.         proxy_set_header Host "www.google.com";
  9.         proxy_set_header Referer https://www.google.com;
  10.         proxy_set_header Accept-Encoding "";
  11.         proxy_set_header Accept-Language "en-US";
  12.         proxy_set_header User-Agent $http_user_agent;
  13.         
  14.         proxy_set_header X-Real-IP $remote_addr;
  15.         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  16.         proxy_set_header X-Forwarded-Proto https;

  17.         subs_filter  http://www.google.com http://www.example.com;
  18.         subs_filter  https://www.google.com http://www.example.com;
  19.         sub_filter_once off;
  20.         # 这里替换网页中的链接,因为我们的镜像站是http的,所以上面顺便把协议也一起替换了
  21. }
  22. }
复制代码


可是只能打开 google 首页,搜索的话会显示连接已重置,求解?有没有做过的大哥解答一下呢?
发表于 2021-5-17 17:50:37 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
发表于 2021-5-17 17:52:02 | 显示全部楼层
把小鸡IPV6关掉试试,或者把相关域名的IPv4在hosts里写死
发表于 2021-5-17 17:52:59 | 显示全部楼层
你不怕域名 ip被封么
发表于 2021-5-17 17:53:42 | 显示全部楼层
Google的结果中有一大把的其他域名,需要全部替换。
发表于 2021-5-17 17:54:49 | 显示全部楼层
用http 还怎么搜,结果页动不动就是敏感词
发表于 2021-5-17 17:55:14 | 显示全部楼层
自行参考:https://linuxeye.com/450.html
发表于 2021-5-17 18:14:07 | 显示全部楼层
本帖最后由 nic2013 于 2021-5-17 18:23 编辑

连接已重置都是小事情,主要的是谷歌 IP 识别有问题,错误识别国外 IP 为大陆 IP 的话,会跳转到 google.hk ,所以就连接已重置了。

建议改一个其他端口,不要用 443 端口, 自己用,完全没问题,也不影响其他网站搭建。

  1. server
  2.     {
  3.         listen 443 ssl http2;
  4.         #listen [::]:443 ssl http2;
  5.         server_name 反代玉米;

  6.         ssl_certificate /usr/local/nginx/conf/ssl/反代玉米证书.cer;
  7.         ssl_certificate_key /usr/local/nginx/conf/ssl/反代玉米证书.key;
  8.         ssl_session_timeout 5m;
  9.         ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
  10.         ssl_prefer_server_ciphers on;
  11.         ssl_ciphers "TLS13-AES-256-GCM-SHA384:TLS13-CHACHA20-POLY1305-SHA256:TLS13-AES-128-GCM-SHA256:TLS13-AES-128-CCM-8-SHA256:TLS13-AES-128-CCM-SHA256:EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5";
  12.         ssl_session_cache builtin:1000 shared:SSL:10m;
  13.         # openssl dhparam -out /usr/local/nginx/conf/ssl/dhparam.pem 2048
  14.         ssl_dhparam /usr/local/nginx/conf/ssl/dhparam.pem;

  15. location / {
  16.             proxy_pass https://www.google.com;
  17.             proxy_redirect off;
  18.             sub_filter_once off;
  19.             sub_filter "www.google.com" "反代玉米";
  20.             proxy_set_header Host "www.google.com";
  21.             proxy_set_header Referer $http_referer;
  22.             proxy_set_header X-Real-IP $remote_addr;
  23.             proxy_set_header User-Agent $http_user_agent;
  24.             proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  25.             proxy_set_header X-Forwarded-Proto https;
  26.             proxy_set_header Accept-Encoding "";
  27.             proxy_set_header Accept-Language "zh-CN";
  28.             proxy_cookie_domain www.google.com 反代玉米;
  29.             proxy_set_header Cookie "PREF=ID=047808f19f6de346:U=0f62f33dd8549d11:FF=2:LD=en-US:NW=1:TM=1325338577:LM=1332142444:GM=1:SG=2:S=rE0SyJh2W1IQ-Maw";
  30.         }

  31.         access_log /root/log/google.log;
  32.         error_log /root/log/google_error.log;
  33. }
复制代码
发表于 2021-5-17 18:19:07 | 显示全部楼层
单纯搜索的话宝塔那个自带的就行,别的干不了
发表于 2021-5-18 08:38:26 | 显示全部楼层
感觉这个问题跟谷歌识别 IP 地址有关系,有些 IP会跳转到 google.com ,然后就连接已重置。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|小黑屋|全球主机交流论坛

GMT+8, 2024-4-26 22:05 , Processed in 0.100570 second(s), 8 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表