找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 13083|回复: 0

nginx反代加替换教程

[复制链接]
发表于 2012-11-13 22:25:40 | 显示全部楼层 |阅读模式
1、安装Nginx
+ P  F1 }" _) S: j: k+ s
[AppleScript] 纯文本查看 复制代码
yum -y install gcc g++ vim libncurses5-dev make libxml2-dev
yum -y install subversion
yum -y install libpcre3 libpcre3-dev libcurl4-openssl-dev
yum -y install pcre* zlib* openssl*
wget -c  http://nginx.org/download/nginx-1.0.5.tar.gz
tar -zxf nginx-1.0.5.tar.gz
wget -c http://wiki.nginx.org/images/5/51/Nginx-accesskey-2.0.3.tar.gz
tar -zxf Nginx-accesskey-2.0.3.tar.gz
svn checkout http://substitutions4nginx.googlecode.com/svn/trunk/ substitutions4nginx-read-only
curdir=$(pwd)
cd nginx-1.0.5
./configure --user=nobody --group=nobody  --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --pid-path=/var/run/nginx.pid  --conf-path=/etc/nginx/nginx.conf   --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-ipv6 --with-pcre --with-http_sub_module --add-module=$curdir/substitutions4nginx-read-only --add-module=$curdir/nginx-accesskey-2.0.3
make
make install
  a# w4 ^9 `. @. x
6 W! C& R  ?8 @2 R* \/ p
谷歌代码即将关闭,新增以下自己对照修改上面代码:
5 ^. c- X: H0 s% \
[AppleScript] 纯文本查看 复制代码
killall -9 nginx
/etc/init.d/nginx stop #停止nginx

cd /root
yum update
yum install -y git gcc g++ make automake #安装依赖包
git clone https://github.com/yaoweibin/ngx_http_substitutions_filter_module

8 d9 |# \) i0 D. @9 p, q3 y5 H; q* R$ B# O7 j, E. x' I% E
2、配置nginx.conf7 _' ~: t; C2 ]4 S6 C5 K
编辑/etc/nginx/nginx.conf
2 J& z' o: a! V  o
[AppleScript] 纯文本查看 复制代码
server{
listen 80;
server_name t.playvps.com;  #绑定的域名
access_log off;                #off 关闭日志
location / {
subs_filter 'www.baidu.com' 't.playvps.com' gi;  #substitutions4nginx替换 (使用方法参照官方)
proxy_set_header   X-Real-IP  $remote_addr;
proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header   Referer http://www.baidu.com;        #强制定义Referer,程序验证判断会用到
proxy_set_header   Host www.baidu.com;                  #定义主机头,如果目标站点绑定的域名个server_name项的吻合则使用$host
proxy_pass http://www.baidu.com;                        #指定目标,建议使用IP或者nginx自定义池
proxy_set_header Accept-Encoding "";                        #清除编码
        }
}
) K5 ]6 D, M1 w5 U& K7 D* \$ U! S! \* U
3.重启Nginx
5 _2 `: c/ n1 d! f% `( V, H9 I
[AppleScript] 纯文本查看 复制代码
pkill nginx #关闭进程
nginx #启动Nginx
  M7 \6 {% h$ i* {. Z
" c2 m" _* x$ w% l9 p7 g
以下为一些配置例子作为参考
, k, B. s: Z: S' w2 B$ V$ A如果替换中文要注意网站配置文件的编码如果是utf8则汉字utf8转二进制表现形式(文后解释)
' c" Z! P: N# d5 {; L
[AppleScript] 纯文本查看 复制代码
server{
 
listen 80;
 
server_name a.a; 
access_log off;                
location / {
 
proxy_cache cache_one;
 
proxy_cache_valid  200 304 1s; 
proxy_cache_key $host$uri$is_args$args;
 
subs_filter www.hostloc.com j.baidu.wf;
 
subs_filter static/image/common/logo.png /img/xxx.jpg;
 
subs_filter 全球主机交流论坛 全球MJJ交流论坛
 
subs_filter '美国' '米国' ;
 
proxy_set_header   X-Real-IP  $remote_addr;
 
proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;
 
proxy_set_header   Referer http://www.hostloc.com;        
proxy_set_header   Host www.hostloc.com;                  
proxy_pass http://www.hostloc.com;                        
proxy_set_header Accept-Encoding "";                
expires 5h; 
        }
 

}

. n" }* o) K, m
) u: j  B: g8 }  h中文还是弄不明白,看这:
6 Q, U) T$ I3 f: H- ]% T. h+ T3 X' d4 o中文的特殊性中文匹配替换可以在本模块中进行,但是需要知道所匹配中文的编码方式及其最终的二进制表示形式,而且只能采用正则匹配替换的方法。
# m3 u% t8 `  J  C* t; c9 W比如: % }, ~3 p/ ]5 S3 F1 `
“你好”的unicode表示为:  0x4f60 0x597d% I3 W* Q) R- o# h
  
+ ^$ y: t$ _' D0 P1 g) U8 U8 }而其utf-8的表示为:  0xe4bda0 0xe5a5bd/ F9 j; J1 r# p
  
) ]5 L5 j. G! B( T% D) [0 d查看二进制中文的表示方法方法1如果是Unicode或者GB的有其固定对应的二进制表示形式,你可以去查表。utf-8你可以自己转换,但是比较麻烦。转换的方法看这里(http://www.ruanyifeng.com/blog/2007/10/ascii_unicode_and_utf-8.html)
1 h  ?1 z. Y+ B# O" Z4 s5 |方法2把对应编码的网页下载下来,然后用二进制形式查看其内容,可以看到对应汉字的二进制表示(vim中可以输入命令':%!xxd')。
  _  E- |1 n5 H5 Y8 ]  s) K例子把‘你好’替换成‘aaabbb’  subs_filter '\xe4\xbd\xa0\xe5\xa5\xbd' 'aaabbb' r;% \3 v) a* B. [6 J* w: k0 [1 C
; r! T% J& q" P5 ?6 f
在线转换这里有:http://www.araaa.com/zhanzhang/" v  ~1 v. }( e! Z/ Y; |
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|第一站论坛 ( 蜀ICP备06004864号-6 )

GMT+8, 2026-5-16 20:20 , Processed in 0.086157 second(s), 25 queries .

Powered by Discuz! X3.5

© 2001-2026 Discuz! Team.

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