1 准备工作

  • Nginx部署在192.168.247.100上。
  • Tomcat是以Docker启动的,部署在192.168.247.101上。
  • 关闭两台机器上的防火墙,防止影响测试:
  1. systemctl stop firewalld
  1. systemctl disable firewalld

2 配置反向代理

  • Docker启动Tomcat7和Tomcat8:
  1. docker run -d --name tomcat7 -p 8080:8080 tomcat:7.0.62
  1. docker run -d --name tomcat8 -p 8081:8080 tomcat:8.0.52
  • 进入/usr/local/nginx/conf/目录,修改nginx.conf文件:
  1. cd /usr/local/nginx/conf/
  • nginx.conf文件修改格式:
  1. http {
  2. ...
  3. upstream reverse_proxy {
  4. server 192.168.247.101:8080;
  5. server 192.168.247.101:8081;
  6. }
  7. server{
  8. location / {
  9. ...
  10. proxy_pass http://reverse_proxy;
  11. proxy_set_header Host $host;
  12. ...
  13. }
  14. ...
  15. }
  16. }
  • nginx.conf文件的完整修改:
  1. # 安全问题,建议使用nobody,不要用root
  2. #user nobody;
  3. # worker数和服务器的CPU数量相等为最佳
  4. worker_processes 1;
  5. # worker绑定CPU(1个worker绑定4个CPU)
  6. # worker_cpu_affinity 0001 0010 0100 1000
  7. # 错误日志
  8. #error_log logs/error.log;
  9. #error_log logs/error.log notice;
  10. #error_log logs/error.log info;
  11. #pid logs/nginx.pid;
  12. events {
  13. # 每个worker进程所能建立连接的最大值
  14. worker_connections 1024;
  15. # Nginx支持IO多路复用
  16. # use epoll;
  17. # 当一个worker抢占到一个连接时,是否尽可能的让其获取更多的链接,默认是off。
  18. # multi_accept on;
  19. # 默认是on,开启Nginx的抢占锁机制
  20. # accept_mutex on;
  21. }
  22. http {
  23. # 当Web服务器收到静态的资源文件请求的时候,根据请求文件的后缀名在服务器的MIME配置文件中找到对应的MIME Type,再根据MIME TYPE设置HTTP Response的Content-Type,然后浏览器根据Content-Type的值处理文件
  24. include mime.types;
  25. # 如果不能从mime.types找到映射的话,用以下的作为默认值
  26. default_type application/octet-stream;
  27. # 日志格式
  28. #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  29. # '$status $body_bytes_sent "$http_referer" '
  30. # '"$http_user_agent" "$http_x_forwarded_for"';
  31. # 访问日志位置
  32. #access_log logs/access.log main;
  33. # 开启从磁盘直接到网络的文件传输,适用于有大文件上传下载的情况,提高IO的效率
  34. sendfile on;
  35. #tcp_nopush on;
  36. # 一个请求完成之后还要保持连接多久,默认为0,表示完成请求后直接关闭连接
  37. #keepalive_timeout 0;
  38. keepalive_timeout 65;
  39. # 开启或关闭gzip模块
  40. #gzip on;
  41. # 设置允许压缩的页面最小字节数,页面字节数从header头中的Content-Type中进行获取
  42. #gzip_min_length 1k;
  43. # gzip的压缩比,1 压缩比最小处理速度最快,9压缩比最大但处理速度最慢(传输速度快但比较消耗CPU)
  44. #gzip_comp_level 4;
  45. # 匹配MIME类型进行压缩,(无论是否指定)"text/html"类型总是会被压缩的
  46. #gzip_types types text/plain text/css application/json application/x-javascript text/xml
  47. # 动静分离
  48. # 服务器端静态资源缓存,最大缓存到内存中的文件,不活跃期限
  49. #open_file_cache max=655350 inactive=20s;
  50. # 活跃期限内最少使用的次数,否则视为不活跃
  51. #open_file_cache_min_uses 2;
  52. # 验证缓存是否活跃的时间间隔
  53. # open_file_cache_valid 30s;
  54. # 反向代理
  55. upstream reverse_proxy {
  56. # 1.轮询(默认) 每个请求按时间顺序逐一分配到不同的后端服务器,如果后端服务器down掉,则自动剔除
  57. # 2.指定权重 指定轮询几率,weight和访问比率成正比,用于后端服务器性能不均的情况。server 192.168.247.101:8080 weight=1;
  58. # 3.IP绑定 ip_hash 每个请求按照访问ip的hash的结果分配,这样每个访客固定一个后端服务器,可以解决Session的问题。
  59. # 4.备机方式 backup 正常情况下不访问设置为backup的备机,只有当所有非备机全部宕机的情况下,服务才会进备机
  60. # 5. fair 第三方 按后端服务器的响应时间来分配请求,响应时间短的优先分配
  61. # 6. url_hash 第三方 按访问URL的hash的结果来分配请求,使得每一个URL都定向到同一个后端服务器,后端服务器为缓存时比较有效
  62. server 192.168.247.101:8080;
  63. server 192.168.247.101:8081;
  64. }
  65. server {
  66. # 监听端口
  67. listen 80;
  68. # 服务名
  69. server_name localhost;
  70. # 字符集
  71. #charset koi8-r;
  72. #access_log logs/host.access.log main;
  73. # 路径匹配
  74. # location [=|~|~*|^~] /uri/ { _ }
  75. # = 精确匹配
  76. # ~ 正则匹配,区分大小写
  77. # ~* 正则匹配,不区分大小写
  78. # ^~ 关闭正则匹配
  79. # 匹配规则
  80. # 1. 所有匹配分两个阶段,第一个叫做普通匹配,第二个叫做正则匹配。
  81. # 2. 普通匹配,首先通过"="来匹配完全精确的location
  82. # 2.1 如果没有精确匹配到,那么按照最大前缀匹配的原则,来匹配location
  83. # 2.2 如果匹配到的location有^~,则以此location为匹配最终结果,如果没有会把匹配结果暂存,继续进行正则匹配
  84. # 3. 正则匹配,依次从上到下匹配前缀是~或~*的location,一旦匹配成功依次,则立刻以此location为准,不再向下继续进行正则匹配
  85. # 4. 如果正则匹配度不成功,则继续使用之前暂存的普通匹配的location
  86. location / { # 匹配任何查询,因为所有请求都以/开头,但是正则表达式罪责和长的块规则将被优先和查询匹配
  87. # 反向代理的路径
  88. proxy_pass http://reverse_proxy;
  89. proxy_set_header Host $host;
  90. # 定义服务器的默认网站根目录位置
  91. root html;
  92. # 默认访问首页索引文件的名称
  93. index index.html index.htm;
  94. }
  95. #error_page 404 /404.html;
  96. # redirect server error pages to the static page /50x.html
  97. #
  98. error_page 500 502 503 504 /50x.html;
  99. location = /50x.html {
  100. root html;
  101. }
  102. # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  103. #
  104. #location ~ \.php$ {
  105. # proxy_pass http://127.0.0.1;
  106. #}
  107. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  108. #
  109. #location ~ \.php$ {
  110. # root html;
  111. # fastcgi_pass 127.0.0.1:9000;
  112. # fastcgi_index index.php;
  113. # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
  114. # include fastcgi_params;
  115. #}
  116. # deny access to .htaccess files, if Apache's document root
  117. # concurs with nginx's one
  118. #
  119. #location ~ /\.ht {
  120. # deny all;
  121. #}
  122. }
  123. # another virtual host using mix of IP-, name-, and port-based configuration
  124. #
  125. #server {
  126. # listen 8000;
  127. # listen somename:8080;
  128. # server_name somename alias another.alias;
  129. # location / {
  130. # root html;
  131. # index index.html index.htm;
  132. # }
  133. #}
  134. # HTTPS server
  135. #
  136. #server {
  137. # listen 443 ssl;
  138. # server_name localhost;
  139. # ssl_certificate cert.pem;
  140. # ssl_certificate_key cert.key;
  141. # ssl_session_cache shared:SSL:1m;
  142. # ssl_session_timeout 5m;
  143. # ssl_ciphers HIGH:!aNULL:!MD5;
  144. # ssl_prefer_server_ciphers on;
  145. # location / {
  146. # root html;
  147. # index index.html index.htm;
  148. # }
  149. #}
  150. }
  • 如果Nginx没启动,那么就启动:
  1. cd /usr/local/nginx/
  2. ./nginx
  • 如果Nginx启动了,那么就让Nginx加载一下配置文件:
  1. cd /usr/local/nginx/
  2. ./nginx -s reload