使用默认的配置不变,只需使用下面的配置即可:
下面的配置:‘/‘匹配了所有的请求,将所有的请求都转发给本地的8080端口的web服务器
location / {
proxy_pass http://127.0.0.1:8080;
}
启动 nginx [配置文件]
重新加载配置文件 nginx -s reload 配置文件
优雅停机 nginx -s quit
立即停机 nginx -s stop
检查配置文件是否正确 nginx -t[配置文件]
3、
原文:http://www.cnblogs.com/YDDMAX/p/4987030.html