nginx反向代理配置文件

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

 

posted @ 2023-09-05 09:07  燚林  阅读(39)  评论(0编辑  收藏  举报