使用centos7系统的国外VPS制作google镜像
![]() | ![]() | ![]() | ![]() |
| 【性价之王】 | 【线路之王】 | 【价格之王】 | 【配置之王】 |
| 【免费之王】 | 【香港首推】 | 【梯子之王】 | 【独服之王】 |

目前国内的搜索引擎也比较多,百度、360、搜狗什么的,百度基本是一家独大,但是百度搜索出来的内容广告太多,而且一些垃圾商家利用竞价排名的方式把自己的服务推到最前面,我们想找一个官方网站非常难,说到这里我们就想起了谷歌搜索,谷歌搜索算是非常良心了,搜索出来的东西基本就是你想要的,之前听说谷歌又要重回到国内了,相信谷歌一定不会放过国内的市场的,但是目前无法访问谷歌,不过我们可以通过使用国外VPS制作一个谷歌镜像来使用谷歌搜索,今天就给大家分享一个制作教程,我们使用的是github上的一个制作方法。
VPS选择建议
| 排名 | 商家 | 套餐 | 购买VPS.COM.IN |
| 1 | virmach | $10.5/年 512M内存 500G流量 KVM | 点击购买 |
| 2 | vultr | $3.5/月 512M内存 500G流量 KVM IP随时换 | 点击购买 |
| 3 | 搬瓦工 | $48.6/年 1G内存 1T流量 KVM CN2线路 | 点击购买 |
作者地址
https://github.com/cuber/ngx_http_google_filter_module| 1 | https://github.com/cuber/ngx_http_google_filter_module |
制作方法
使用Xshell连接你的VPS,输入以下脚本:
yum install -y gcc gcc-c++ git makewget "http://nginx.org/download/nginx-1.7.8.tar.gz"wget "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.38.tar.gz"wget "https://www.openssl.org/source/openssl-1.0.1j.tar.gz"wget "https://www.openssl.org/source/openssl-1.0.1j.tar.gz"wget "http://zlib.net/zlib-1.2.11.tar.gz"git clone https://github.com/cuber/ngx_http_google_filter_modulegit clone https://github.com/yaoweibin/ngx_http_substitutions_filter_module| 12345678 | yum install -y gcc gcc-c++ git makewget "http://nginx.org/download/nginx-1.7.8.tar.gz"wget "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.38.tar.gz"wget "https://www.openssl.org/source/openssl-1.0.1j.tar.gz"wget "https://www.openssl.org/source/openssl-1.0.1j.tar.gz"wget "http://zlib.net/zlib-1.2.11.tar.gz"git clone https://github.com/cuber/ngx_http_google_filter_modulegit clone https://github.com/yaoweibin/ngx_http_substitutions_filter_module |
把下载下来的压缩包进行解压,解压命令:
tar xzvf nginx-1.7.8.tar.gz tar xzvf pcre-8.38.tar.gz tar xzvf openssl-1.0.1j.tar.gz tar xzvf zlib-1.2.11.tar.gz| 1234 | tar xzvf nginx-1.7.8.tar.gz tar xzvf pcre-8.38.tar.gz tar xzvf openssl-1.0.1j.tar.gz tar xzvf zlib-1.2.11.tar.gz |
首先们要安装nginx,进入nginx源码文件夹:
cd nginx-1.7.8| 1 | cd nginx-1.7.8 |
设置一下编译选项:
./configure \ –pix=/opt/nginx-1.7.8 \ –with-pcre=../pcre-8.38 \ –with-openssl=../openssl-1.0.1j \ –with-zlib=../zlib-1.2.8 \ –with-http_ssl_module \ –add-module=../ngx_http_google_filter_module \ –add-module=../ngx_http_substitutions_filter_module| 1 | ./configure \ –pix=/opt/nginx-1.7.8 \ –with-pcre=../pcre-8.38 \ –with-openssl=../openssl-1.0.1j \ –with-zlib=../zlib-1.2.8 \ –with-http_ssl_module \ –add-module=../ngx_http_google_filter_module \ –add-module=../ngx_http_substitutions_filter_module |
开始编译安装:
makesudo make install| 12 | makesudo make install |
安装完成后我们测序一下是否成功
/opt/nginx-1.7.8/sbin/nginx -t| 1 | /opt/nginx-1.7.8/sbin/nginx -t |
显示以下界面就是成功了
编辑conf文件,编辑命令:
vi /opt/nginx-1.7.8/conf/nginx.conf| 1 | vi /opt/nginx-1.7.8/conf/nginx.conf |
编辑器使用方法
按a键可以进行编辑,坐下角会出现insert标志,这是linux基本的命令。按ESC后,输入:wq是保存并退出,输入:q!是不保存退出。
将server部分更改为以下内容
server { listen 80; server_name www.123.com;#换成你的域名,需要解析到VPS上 location / { proxy_pass https://www.google.com; proxy_connect_timeout 120; proxy_read_timeout 600; proxy_send_timeout 600; send_timeout 600; proxy_redirect off; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; google on; google_language "zh-CN"; } }| 12345678910111213141516 | server { listen 80; server_name www.123.com;#换成你的域名,需要解析到VPS上 location / { proxy_pass https://www.google.com; proxy_connect_timeout 120; proxy_read_timeout 600; proxy_send_timeout 600; send_timeout 600; proxy_redirect off; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; google on; google_language "zh-CN"; } } |
也可以改成以下内容
server { server_name www.123.com;#改成你的域名 listen 80; resolver 8.8.8.8; location / { google on; } }| 12345678 | server { server_name www.123.com;#改成你的域名 listen 80; resolver 8.8.8.8; location / { google on; } } |
ESC后输入保存并退出文件的命令:
启动nginx /opt/nginx-1.7.8/sbin/nginx -c /opt/nginx-1.7.8/conf/nginx.conf
| 1 | /opt/nginx-1.7.8/sbin/nginx -c /opt/nginx-1.7.8/conf/nginx.conf |
如果nginx已经运行了,需要重启一次就会加载新的配置,重启命令如下:
/opt/nginx-1.7.8/sbin/nginx -s reload| 1 | /opt/nginx-1.7.8/sbin/nginx -s reload |
这样你打开你的域名,就会出现谷歌的页面,可以愉快的搜索了,再也不要看其他搜索引擎的广告了。
猜你可能想看的VPS
- 分享一些支持比特币付款的国外独立服务器商家独立服务器[U]
- PHP 获取图片指定点颜色及计算反色函数全球[VPS测评]
- imidc→e3 e5 独服 120 台 $30 月 香港服务器 台湾服日本VPS[主机]
- 便宜 racknerd→美国站群服务器 32 个 C 段 月付$119 站群服务器[IP]
- 特价 桔子 VPS→洛杉矶 CN2 VPS 三网直连 回程 CN2 月付全球[VPS测评]
- 腾讯云老用户年终专享回馈→com 域名 8 元 年 1 核 2G 云服务全球[VPS测评]
- 阿里云 2020 年 1 月促销:国内 香港云服务器 2 核 8G5M1香港VPS[主机]
- PHP 判断是否为微信浏览器(微信客户端)的函数全球[VPS测评]
- 疯狂猜成语 图猜成语一个壁虎尾巴断了是什么成语?全球[VPS测评]
- 华为云近期云服务器 1 折促销活动整理,国内 香港 CN2 服务器新用户香港VPS[主机]
- 如何为WordPress网站站外链接添加自动nofollow功能全球[VPS测评]
- WordPress代码实现自动为文章中的图片添加alt、title属性全球[VPS测评]
- NameCheap和华为云618域名注册优惠力度大 .com域名最低仅1全球[VPS测评]
- 六六云新上洛杉矶cera联通AS9929线路VPS,100M大带宽,延迟全球[VPS测评]
- Linux curl命令详解 用法指南全球[VPS测评]
- Wiredblade-美国凤凰城 5$ 月 2核4G内存40G NVME美国VPS[主机]
- HKServerSolution → 2G 内存 20G HDD 2T单全球[VPS测评]
- 咸鱼科技法兰克福 费里蒙CN2 GIA → 1C 512M 8G 450全球[VPS测评]
- LOCVPS,全新香港大浦CN2 VPS 2核4G内存3M仅54/月香港VPS[主机]
- 源云主机,香港沙田VPS CN2 1核1G 24/月 NTT 50M 9香港VPS[主机]
- 极客主机,美国高防/日本软银/新加坡双程CN2/香港VPS 折后39元/日本VPS[主机]
- YYYHost:4核4G香港cn2vps,20G SSD/3Mbps不限香港VPS[主机]
- 阳帝云双十二活动:1核1G10M大宽带香港BGP云服务器,月付14元香港VPS[主机]
- 腾讯云免备案海外服务器:高速网络免备案,助力企业出海!全球[VPS测评]
- 桔子数据:香港CN2大带宽云服务器28元/月_1核/1G/10M带宽/C香港VPS[主机]
- 什么是云计算?全球[VPS测评]
- 腾讯云服务器价格表:云服务器低至95元/年;香港/新加坡轻量30Mbps香港VPS[主机]
- 阿里云香港服务器多少钱一年?阿里云香港云服务器如何购买?香港VPS[主机]
- 六一云:国内BGP高防vps套餐,1核/1G/2Mbps/香港CN2,月香港VPS[主机]
- 香港云服务器对于建站有什么便捷的地方?香港VPS[主机]
转载请注明原文地址:http://140.238.13.167:12355/read-21699.html











