Negix

 

Negix反向代理、负载均衡

negix.conf 文件配置

worker_processes  1;



events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;

    keepalive_timeout  65;

#负载均衡
#1,设置代理地址,将代理地址给到下面location
    upstream proxyDomain {
    server 127.0.0.1:8080 weight=1;
    server 127.0.0.1:8081 weight=1;
    }

#反向代理
    server {
        listen       80;
        server_name  localhost;

        location / {
            root   html;
            index  index.html index.htm;
        #2,添加一个代理地址
        proxy_pass http://proxyDomain;

        }

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

    }


}

 

相关文章

vue阻止冒泡事件 阻止点击事件的执行 <div @click=&a...
尝试过使用网友说的API接口获取 找到的都是失效了 暂时就使用...
后台我拿的数据是这样的格式: [ {id:1 , parentId: 0, name:...
JAVA下载文件防重复点击,防止多次下载请求,Cookie方式快速简...
Mip是什么意思以及作用有哪些