Nginxtomcat cluster server load balancer solution Notes

Source: Internet
Author: User
Tags windows download
Nginxtomcat cluster load balancing solution notes nginx address for Windows download: http://nginx.org/ The version used in this article is 1.5.1. decompress the package and modify nginx in the conf directory. conf: # usernobody; worker_processes1; # error_lo... nginx tomcat cluster load balancing solution notes for Windows download nginx address: http://nginx.org/ The version used in this article is 1.5.1. decompress the package and modify nginx in the conf directory. 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 "$ htt P_referer "'#'" $ http_user_agent "" $ http_x_forwarded_for "'; # access_log logs/access. log main; client_header_timeout 3 m; client_body_timeout 3 m; send_timeout 3 m; limit 1 k; limit 4 4 4 k; sendfile on; tcp_nopush on; tcp_nodelay on; # tcp_nopush on; # keepalive_timeout 0; keepalive_timeout 65; # gzip on; upstream localhost {# allocate requests to backend tomcat servers based on ip address computing. many people mistakenly believe that sessi can be solved. The on problem is actually not. # The ip address of a route switch may be different for multiple networks of the same machine # ip_hash; server localhost: 9097 weight = 1; server localhost: 9098 weight = 1; server localhost: 9097 backup; server localhost: 9098 backup; # jvm_route $ cookie_JSESSIONID | sessionid reverse; # ip_hash for session replication;} upstream backend {server localhost: 9097; server localhost: 9098 ;} server {listen 9096; server_name localhost; # charset KOI8-R; # access_log logs/host. access. log main; Location ~ ^/(WEB-INF)/{deny all; }### so the static files are gif, jpg, etc. are opened locally, the storage directory is html, the storage time is 30 days. location ~. *\. (Gif | jpg | jpeg | png | bmp | swf | css | js | htm | html) $ {root html; access_log off; expires 30d ;}location/{root html; index. jsp; # include proxy. conf; # This file is newly created. import proxy_pass http://localhost ; Proxy_redirect off; # default proxy_set_header Host $ host; proxy_set_header X-Real-IP $ remote_addr; proxy_set_header X-Forwarded-For $ scheme; limit 10 m; limit 128 k; limit 3; #90 proxy_send_timeout 3; #90 proxy_read_timeout 3; #90 proxy_buffer_size 4 k; proxy_buffers 4 32 k; proxy_busy_buffers_size 64 k; proxy_temp_file_write_size 64 k;} # Error_page 404/404 .html; # redirect server error pages to the static page/50x.html # error_page 500 502 503 x.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. 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; # server_name localhost; # ssl on; # ssl_certificate cert. pem; # ssl_certificate_key cert. key ;# Ssl_session_timeout 5 m; # ssl_protocols SSLv2 SSLv3 TLSv1; # ssl_ciphers HIGH :! ANULL :! MD5; # ssl_prefer_server_ciphers on; # location/{# root html; # index index.html index.htm; #}#}} download Tomcat and modify the port to 9097, and then change the port to 9098 to start two tomcat and nginx respectively. in the address bar, enter http://locahost/ You can see that the tomcat welcome interface has the same configuration for Linux and Windows. Note that only the tomcat configuration in linux needs to be added.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.