WGCLOUD用nginx做集群负载的配置说明

2次阅读

共计 1059 个字符,预计需要花费 3 分钟才能阅读完成。

下载:www.wgstart.com

以 WGCLOUD v3.2 版本为例子:

在 172.17.188.27 和 172.17.188.28 的 server/application.yml 里配置,nodeType: slave

在 172.17.188.29 的 server/application.yml 里配置,nodeType: master

如下是 nginx 的相干配置:

 
    upstream wgcloudServer {
            server 172.17.188.27:9999 weight=10;# 这是 slave 节点
            server 172.17.188.28:9999 weight=10;# 这是 slave 节点
            server 172.17.188.29:9999 weight=5;# 这是 master 节点
            ip_hash;
    }

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            proxy_pass http://wgcloudServer;  
            #root   html;
            #index  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {root   html;}

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }
正文完
 0