goodbaby 发表于 2011-9-14 14:58:59

substitutions4nginx 到底怎么用?

substitutions4nginx 到底怎么用?

goodbaby 发表于 2011-9-14 15:02:33

InstallationTo install, get the source with subversion:
svn checkout http://substitutions4nginx.googlecode.com/svn/trunk/ substitutions4ngin

x-read-onlyand then compile nginx with the following option:

./configure --add-module=/path/to/module

我SVN以后,然后不明白./configure --add-module=/path/to/module 这句话怎么设置,请军哥赐教!谢谢

licess 发表于 2011-9-14 15:03:57

模块路径

goodbaby 发表于 2011-9-14 15:04:32

server
{
listen 80;
server_name www.abc.com;

location / {
proxy_pass http://twitter.com/;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

}
}

还有如何使用这个规则,能不能补充好这段代码,然后屏蔽那些多余的twitter.com字段?

goodbaby 发表于 2011-9-14 15:06:47

原帖由 licess 于 2011-9-14 15:03 发表 https://bbs.vpser.net/images/common/back.gif
模块路径

./configure --add-module=/path/to/module

恩?我用WINSCP登录进入,,然后怎么设置这个什么所谓的模块路径呢?是不是要修改nginx.conf文件?

licess 发表于 2011-9-14 19:01:22

substitutions4nginx模块放哪你就写哪
页: [1]
查看完整版本: substitutions4nginx 到底怎么用?