nginx
蓝虎
码农
展开
-
centos中源码编译nginx
先安装pcre,Rewrite模块需要 tar zxvf pcre-8.10.tar.gz cd pcre-8.10/ ./configure make && make install groupadd -r nginx useradd -r -g nginx -s /bin/false -M nginx tar -zxvf nginx-1.7.10 cd nginx-1.7.10原创 2015-03-03 10:13:59 · 463 阅读 · 0 评论 -
nginx反向代理设置
location / { proxy_pass http://localhost:8000; proxy_set_header Host $host; proxy_set_header X-Reak-IP $remote_addr; } "/"表示匹配所有访问路径原创 2015-08-24 16:17:30 · 413 阅读 · 0 评论