nginx配置負載均衡

修改nginx配置文件nginx.conf


#user  nobody;
worker_processes  1;


#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;


#pid        logs/nginx.pid;




events {
    worker_connections  1024;
}


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


    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';


    #access_log  logs/access.log  main;


    sendfile        on;
    #tcp_nopush     on;


    #keepalive_timeout  0;
    keepalive_timeout  65;


    #gzip  on;

   #配置tomcat集羣 並添加集羣名稱  這裏集羣名稱就用的是ip,當然也可以自定義別的名稱
    upstream 120.24.33.3333{    
server 120.24.33.3333:8080 weight=2;  //配置服務器權重,訪問時nginx會根據你配的權重比訪問相應的tomcat服務器
server 120.24.33.3333:8088 weight=1;   //比如這裏是2:1,訪問時前兩次請求訪問會在8080服務器上,第三次會轉到8088服務器,然後再轉到8080,以此類推
    }


    server {
        listen       80;                //設置對外訪問端口
        server_name  120.24.33.3333;   //設置對外訪問ip或者域名


        #charset koi8-r;


        #access_log  logs/host.access.log  main;


        location / {
            proxy_pass http://120.24.33.3333;   注意這裏http://  後面填ip還是別的什麼不重要,但是要和上面配置tomcat集羣upstream **{ } 這個地方上面填入的名稱相同
        }


        #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;
        }

#文件訪問權限  這裏要注意配置文件格式,要不然網頁加載不出來你的文件,圖片什麼的不可以顯示
location ~* \.(gif|jpg|jpeg|png|bmp|html|htm|flv|swf|ico)$ {
           proxy_pass http://120.24.33.3333;
           add_header Last-Modified $date_gmt;
           add_header Via $server_addr;
           expires 30d;
        }

#js /css文件訪問權限   必須配置,不配置js和css文件會被nginx攔截
        location ~ .*\.(js|css)?$
        {
         proxy_pass http://120.24.33.3333;
         add_header Last-Modified $date_gmt;
         add_header Via $server_addr;
         expires      1h;
         }

        # 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;
        #}
    }




    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;


    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}




    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;


    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;


    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;


    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;


    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


}

發佈了54 篇原創文章 · 獲贊 28 · 訪問量 4萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章