nginx反向代理配置文件
yum install nginx -y
vi /etc/nginx/conf.d/default.conf
server {
listen 10091; //监听本地端口
location / {
proxy_pass http://10.88.35.51:10091; //代理主机地址
}
}
yum install nginx -y
vi /etc/nginx/conf.d/default.conf
server {
listen 10091; //监听本地端口
location / {
proxy_pass http://10.88.35.51:10091; //代理主机地址
}
}