-
May082011
# Reverse proxy setting: www.example.com:80 -> 192.168.0.1:8080
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://127.0.0.1:8081;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
阅读全文
-
May072011
下载nginx源码包(从http://wiki.nginx.org/NginxChs上)
编译nginx需要指定pcre,zlib,openssl,既然我的系统没有安装这些包,我也不安装deb的包了,直接运行
然后也将nginx-0.6.32的包解压到/opt目录下,进入nginx目录,执行:
#./configure –sbin-path=/usr/local/sbin –with-http_ssl_module –with-pcre=../pcre-7.7 –with-zlib=../zlib-1.2.3 –with-ope...阅读全文