(转)Nginx Google 代理模块 (ngx_http_google_filter_module) —反向代理 Google – 热爱改变生活
我的GitHub GitHub |     登录
  • If you can't fly, then run; if you can't run, then walk; if you can't walk, then crawl
  • but whatever you do, you have to keep moving forward。
  • “你骗得了我有什么用,这是你自己的人生”
  • 曾有伤心之地,入梦如听 此歌

(转)Nginx Google 代理模块 (ngx_http_google_filter_module) —反向代理 Google

服务器相关 sinvader 5571℃ 0评论

前提

  • 1 首先你要有一台服务器(拥有管理权限,ecs 什么的都可以,但是那种一个空间,放网站文件的不行)
  • 2 你的这台服务器要能够上 Google
  • 3 本文针对的是 Linux 服务器

一些介绍

我觉得这个说的比较清楚
反向代理为何叫反向代理? – 回答作者: zhijun liu http://zhihu.com/question/24723688/answer/128105528
而你的这台服务器,要扮演的就是这样的角色

下面是原文

扯两句
wen.lu 一路走到现在, 离不开大家的支持!

很多朋友通过各种方式问过我: “ 你丫怎么不开源啊…”
先向那些朋友道歉啊, 其实不是我不想开源, 只是之前的版本配置实在太复杂. nginx 三方扩展用了一大堆, 外加 lua, 以及突破千行的配置工程, 这么拙劣的技艺, 实在不好意思拿出来分享

遂决定写一个扩展, 让 google 反代的配置和使用 wen.lu 一样简单.

  1. location / {
  2. google on;
  3. }

你没有看错, “一行配置, google 我有!”

现在 g2.wen.lu 就是由该扩展驱动

687474703a2f2f7777322e73696e61696d672e636e2f6c617267652f36386264313737376777316631336e6169646f6e6d6a32313269306e616a73792e6a7067

(当然,网站现在已经挂了)

依赖库

  1. pcre 正则
  2. ngx_http_proxy_module 反向代理
  3. ngx_http_substitutions_filter_module 多重替换

安装

以 ubuntu 14.04 为例 i386, x86_64 均适用

最简安装(我尝试的就是这个)

  1. #
  2. # 安装 gcc & git
  3. #
  4. apt-get install build-essential git gcc g++ make
  5. //CentOS 中使用 yum install build-essential git gcc g++ make
  6. #
  7. # 下载最新版源码
  8. # nginx 官网:
  9. # http://nginx.org/en/download.html
  10. #
  11. wget "http://nginx.org/download/nginx-1.7.8.tar.gz"
  12. #
  13. # 下载最新版 pcre
  14. # pcre 官网:
  15. # http://www.pcre.org/
  16. #
  17. wget "https://ftp.pcre.org/pub/pcre/pcre-8.40.tar.gz"
  18. #
  19. # 下载最新版 openssl
  20. # opessl 官网:
  21. # https://www.openssl.org/
  22. #
  23. wget "https://www.openssl.org/source/openssl-1.0.1j.tar.gz"
  24. #
  25. # 下载最新版 zlib
  26. # zlib 官网:
  27. # http://www.zlib.net/
  28. #
  29. wget "http://www.zlib.net/zlib-1.2.11.tar.gz"
  30. #
  31. # 下载本扩展
  32. #
  33. git clone https://github.com/cuber/ngx_http_google_filter_module
  34. #
  35. # 下载 substitutions 扩展
  36. #
  37. git clone https://github.com/yaoweibin/ngx_http_substitutions_filter_module
  38. #
  39. # 解压缩
  40. #
  41. tar xzvf nginx-1.7.8.tar.gz
  42. tar xzvf pcre-8.40.tar.gz
  43. tar xzvf openssl-1.0.1j.tar.gz
  44. tar xzvf zlib-1.2.11.tar.gz
  45. #
  46. # 进入 nginx 源码目录
  47. #
  48. cd nginx-1.7.8
  49. #
  50. # 设置编译选项
  51. #
  52. ./configure \
  53. --prefix=/opt/nginx-1.7.8 \
  54. --with-pcre=../pcre-8.40 \
  55. --with-openssl=../openssl-1.0.1j \
  56. --with-zlib=../zlib-1.2.11 \
  57. --with-http_ssl_module \
  58. --add-module=../ngx_http_google_filter_module \
  59. --add-module=../ngx_http_substitutions_filter_module
  60. #
  61. # 编译, 安装
  62. # 如果扩展有报错, 请发 issue 到
  63. # https://github.com/cuber/ngx_http_google_filter_module/issues
  64. #
  65. make
  66. sudo make install
  67. #
  68. # 启动, 安装过程到此结束
  69. #
  70. sudo /opt/nginx-1.7.8/sbin/nginx
  71. #
  72. # 配置修改后, 需要 reload nginx 来让配置生效,
  73. #
  74. sudo /opt/nginx-1.7.8/sbin/nginx -s reload

其实这个时候安装就完成了,但是你需要去配置 nginx,记得去 opt/nginx-xxxxx 下面,别在下载路径下费劲配置半天 (-为啥我要强调呢?啊哈哈

就是这个地方的这个文件

http 配置方式

  1. server {
  2. server_name < 你的域名>;
  3. listen 80;
  4.  
  5. resolver 8.8.8.8;
  6. location / {
  7. google on;
  8. }
  9. }

https 配置方式

首先要制作证书
可以自己制作,也可以申请免费的
自己制作看这里自己给自己签发 SSL 证书
申请免费证书看这里 StartSSL 免费 ssl 证书申请指南

然后配置就好了

  1. server {
  2. server_name < 你的域名>;
  3. listen 443;
  4.  
  5. ssl on;
  6. ssl_certificate < 你的证书>;
  7. ssl_certificate_key < 你的私钥>;
  8.  
  9. resolver 8.8.8.8;
  10. location / {
  11. google on;
  12. }
  13. }

listen 那里是端口号  比如 65 啊就写 65

server_name 那里写域名   也就是你要访问的代理的地址,比如 xxx.com 或者 y.xxx.com

¥ 有帮助么?打赏一下~

转载请注明:热爱改变生活.cn » (转)Nginx Google 代理模块 (ngx_http_google_filter_module) —反向代理 Google


本博客只要没有注明“转”,那么均为原创。 转载请注明链接:sumile.cn » (转)Nginx Google 代理模块 (ngx_http_google_filter_module) —反向代理 Google

喜欢 (0)
发表我的评论
取消评论
表情

如需邮件形式接收回复,请注册登录

Hi,你需要填写昵称和邮箱~

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址