nginx 内网互相访问

nginx  
下载地址 http://nginx.p2hp.com/en/download.html

conf/nginx.conf    配置
 server {
        listen       8090;
        server_name  172.xx.xx.xx; //自己内网地址

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            #root   html;
            #index  index.html index.htm;
            proxy_pass http://127.0.0.1:8081; //代理地址
        }
}

更改文件后 任务管理器 nginx 任务结束 再  重启

你可能感兴趣的:(nginx,运维,服务器)