在/usr/local/nginx/conf
(nginx安装目录)目录中找到nginx.conf
文件,在server中添加
如果nginx已经启动,需要先停止nginx,否则修改不成功!
/usr/local/nginx/sbin/nginx -s stop
编辑nginx.conf
vi nginx.conf
添加以下配置
location /a {
proxy_pass http://test1.songzixian.com:8080/;
index index.html index.htm;
}
location /b {
proxy_pass http://test2.songzixian.com:8081/;
index index.html index.htm;
}
保存退出
:wq
启动nginx
/usr/local/nginx/sbin/nginx
2 comments
看操作挺简单的,这个倒是没玩过
是挺简单的,方便