Nginx网站服务器设置反向代理
摘要:有台服务器是2003的系统,因为连接数的限制,导致网站访问很慢,不得不使用nginx来改善,同时想搭建web.py以使用80端口,这时就得使用nginx的反向代理功能了,配置如下: #新的虚拟主机 server { listen *:80; server_name *.ops.cc; root d:/webpytest; index index.html index.htm; location / { proxy_pass http://127.0.0.1:8088/; ...
阅读全文
posted @ 2012-04-24 22:07