随笔分类 - nginx
摘要:免费开源拓展版本Nginx Nginx开源版地址:http://nginx.org openresty地址:http://openresty.org tengine地址:http://tengine.taobao.org 安装 先下载,然后解压,进入解压后的目录中,有一个 .configure 文件
阅读全文
摘要:nginx的反向代理的使用方法 server { listen 54545; server_name localhost; location ~/user { proxy_pass http://192.168.239.1:1998; } } 将所有访问 54545 端口的请求都会被nginx代理,
阅读全文