Apache對Java的支持很靈活,它們的結合度也很高,例如Apache+Tomcat和Apache+resin等均可以實現對Java應用的支持。Apache通常採用一個內置模塊來和Java應用服務器打交道。與Apache相比,Nginx在配合Java應用服務器方面,耦合度很低,它只能經過自身的反向代理功能來實現與Java應用服務器的支持。但這偏偏是Nginx的一個優勢,耦合度的下降,可使Nginx與Java服務器的相互影響降到最低。php
接下來經過Nginx+Tomcat的實例來說解Nginx對Java的支持。Tomcat在高併發環境下處理動態請求時性能很低,而在處理靜態頁面更加脆弱。雖然Tomcat的最新版本支持epoll,可是經過Nginx來處理靜態頁面要比經過Tomcat處理在性能方面好不少。css
Nginx能夠經過如下兩種方式來實現與Tomcat的耦合:html
將靜態頁面請求交給Nginx,動態請求交給後端Tomcat處理。nginx
將全部請求都交給後端的Tomcat服務器處理,同時利用Nginx自身的負載均衡功能進行多臺Tomcat服務器的負載均衡。web
下面經過兩個配置實例分別講述這兩種實現Nginx與Tomcat耦合的方式。正則表達式
1.動態頁面與靜態頁面分離的實例後端
這裏假定Tomcat服務器的IP地址爲192.168.12.130,同時Tomcat服務器開放的服務器端口爲8080。Nginx相關配置代碼以下:瀏覽器
server {
listen 80;
server_name www.ixdba.net;
root /web/www/html;緩存
location /img/ {
alias /web/www/html/img/;
}tomcat
location ~ (.jsp)|(.do)$ {
proxy_pass http://192.168.12.130:8080;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
}
}
在這個實例中,首先定義了一個虛擬主機www.ixdba.net,而後經過location指令將/web/www/html/img/目錄下的靜態文件交給Nginx來完成。最後一個location指令將全部以.jsp、.do結尾的文件都交給Tomcat服務器的8080端口來處理,即http://192.168.12.130:8080。
須要特別注意的是,在location指令中使用正則表達式後,proxy_pass後面的代理路徑不能含有地址連接,也就是不能寫成http://192.168.12.130:8080/,或者相似http://192.168.12.130:8080/jsp的形式。在location指令不使用正則表達式時,沒有此限制。
2.多個Tomcat負載均衡的實例
這裏假定有3臺Tomcat服務器,分別開放不一樣的端口,地址以下:
192.168.12.131:8000
192.168.12.132:8080
192.168.12.133:8090
Nginx的相關配置代碼以下: upstream mytomcats {
server 192.168.12.131:8000;
server 192.168.12.132:8080;
server 192.168.12.133:8090;
}
server {
listen 80;
server_name www.ixdba.net;
location ~* .(jpg|gif|png|swf|flv|wma|wmv|asf|mp3|mmf|zip|rar)$ {
root /web/www/html/;
}
location / {
proxy_pass http://mytomcats;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
}
} 在這個實例中,先經過upstream定義一個負載均衡組,組名爲mytomcats,組的成員就是上面指定的3臺Tomcat服務器;接着經過server指令定義一個www.ixdba.net的虛擬主機;而後經過location指令以正則表達式的方式將指定類型的文件所有交給Nginx去處理;最後將其餘全部請求所有交給負載均衡組來處理。
這裏還有一點須要注意,若是在location指令使用正則表達式後再用alias指令,Nginx是不支持的。
-----------------------割----------------------------------- CSDN 轉來 1、簡介:
Tomcat在高併發環境下處理動態請求時性能很低,而在處理靜態頁面更加脆弱。雖然Tomcat的最新版本支持epoll,可是經過Nginx來處理靜態頁面要比經過Tomcat處理在性能方面好不少。
2、下載安裝:
下載nginx
http://nginx.org/en/download.html
下載解壓後放到C:\nginx-1.0.4(官網這樣要求的,不知道放其它盤有沒有問題)
啓動nginx.exe,而後在瀏覽器輸入127.0.0.1便可
配置本身的項目測試
第二環節咱們使用了默認的nginx.conf 。Nginx的配置文件都存於目錄conf文件下,其中nginx.conf是它的主配置文件。
如下爲我加上註釋並配置的新的虛擬server
[plain] view plaincopyprint? 01.#運行用戶
02.#user nobody;
03.#開啓進程數 <=CPU數
04.worker_processes 1;
05.#錯誤日誌保存位置
06.#error_log logs/error.log;
07.#error_log logs/error.log notice;
08.#error_log logs/error.log info;
09.#進程號保存文件
10.#pid logs/nginx.pid;
11.
12.#等待事件
13.events {
14. #Linux下打開提升性能
15. #use epoll;
16. #每一個進程最大鏈接數(最大鏈接=鏈接數x進程數)
17. worker_connections 1024;
18.}
19.
20.
21.http {
22. #文件擴展名與文件類型映射表
23. include mime.types;
24. #默認文件類型
25. default_type application/octet-stream;
26. #日誌文件輸出格式 這個位置相於全局設置
27. #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
28. # '$status $body_bytes_sent "$http_referer" '
29. # '"$http_user_agent" "$http_x_forwarded_for"';
30.
31. #請求日誌保存位置
32. #access_log logs/access.log main;
33.
34. #設定請求緩衝
35. client_header_buffer_size 1k;
36. large_client_header_buffers 4 4k;
37.
38. #打開發送文件
39. sendfile on;
40. #tcp_nopush on;
41.
42. #keepalive_timeout 0;
43. keepalive_timeout 65;
44.
45. #客戶端上傳文件大小控制
46. client_max_body_size 8m;
47.
48. #打開gzip壓縮
49. #gzip on;
50.
51. #設定負載均衡的服務器列表
52. #upstream mysvr {
53. # #weigth參數表示權值,權值越高被分配到的概率越大
54. # #本機上的Squid開啓3128端口
55. # #server 192.168.8.1:3128 weight=5;
56. # #server 192.168.8.2:80 weight=1;
57. # #server 192.168.8.3:80 weight=6;
58. #}
59.
60. #第一個虛擬主機
61. server {
62. #監聽IP端口
63. listen 80;
64. #主機名
65. server_name localhost;
66. #root
67.
68. #設置字符集
69. #charset koi8-r;
70. #本虛擬server的訪問日誌 至關於局部變量
71. #access_log logs/host.access.log main;
72. #日誌文件輸出格式
73. #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
74. # '$status $body_bytes_sent "$http_referer" '
75. # '"$http_user_agent" "$http_x_forwarded_for"';
76.
77. location / {
78. root html;
79. index index.html index.htm;
80. }
81.
82. #靜態文件緩存時間設置
83. #location ~ ..(gif|jpg|jpeg|png|bmp|swf)${
84. # expires 30d;
85. #}
86.
87. #靜態文件緩存時間設置
88. #location ~ ..(js|css)?${
89. # expires 1h;
90. #}
91.
92. #對本server"/"啓用負載均衡
93. #location / {
94. # proxy_pass http://mysvr;
95. # proxy_redirect off;
96. # proxy_set_header Host $host;
97. # proxy_set_header X-Real-IP $remote_addr;
98. # proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
99. # client_max_body_size 10m;
100. # client_body_buffer_size 128k;
101. # proxy_connect_timeout 90;
102. # proxy_send_timeout 90;
103. # proxy_read_timeout 90;
104. # proxy_buffer_size 4k;
105. # proxy_buffers 4 32k;
106. # proxy_busy_buffers_size 64k;
107. # proxy_temp_file_write_size 64k;
108. #}
109.
110. #設定查看Nginx狀態的地址
111. #location /NginxStatus {
112. # stub_status on;
113. # access_log on;
114. # auth_basic 「NginxStatus」;
115. # auth_basic_user_file conf/htpasswd;
116. #}
117.
118.
119.
120. #error_page 404 /404.html;
121.
122. # redirect server error pages to the static page /50x.html
123. #
124. error_page 500 502 503 504 /50x.html;
125. location = /50x.html {
126. root html;
127. }
128.
129. # proxy the PHP scripts to Apache listening on 127.0.0.1:80
130. #
131. #location ~ .php$ {
132. # proxy_pass http://127.0.0.1;
133. #}
134.
135. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
136. #
137. #location ~ .php$ {
138. # root html;
139. # fastcgi_pass 127.0.0.1:9000;
140. # fastcgi_index index.php;
141. # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
142. # include fastcgi_params;
143. #}
144.
145. # deny access to .htaccess files, if Apache's document root
146. # concurs with nginx's one
147. #
148. #location ~ /.ht {
149. # deny all;
150. #}
151. }
152.
153.
154. # another virtual host using mix of IP-, name-, and port-based configuration
155. server {
156. #多監聽
157. listen localhost:8666;
158. #主機名
159. server_name LIULJ2576;
160. #WEB文件路徑
161. root E:/Portal;
162. #默認首頁
163. index HomePage.html;
164. #location / {
165. # #這裏至關於局部變量
166. # root E:/Portal;
167. # index HomePage.html;
168. #}
169. }
170.
171.
172. # HTTPS server HTTPS SSL加密服務器
173. #
174. #server {
175. # listen 443;
176. # server_name localhost;
177.
178. # ssl on;
179. # ssl_certificate cert.pem;
180. # ssl_certificate_key cert.key;
181.
182. # ssl_session_timeout 5m;
183.
184. # ssl_protocols SSLv2 SSLv3 TLSv1;
185. # ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
186. # ssl_prefer_server_ciphers on;
187.
188. # location / {
189. # root html;
190. # index index.html index.htm;
191. # }
192. #}
193.
194.}
#運行用戶 #user nobody; #開啓進程數 <=CPU數 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 { #Linux下打開提升性能 #use epoll; #每一個進程最大鏈接數(最大鏈接=鏈接數x進程數) 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; #設定請求緩衝 client_header_buffer_size 1k; large_client_header_buffers 4 4k; #打開發送文件 sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #客戶端上傳文件大小控制 client_max_body_size 8m; #打開gzip壓縮 #gzip on; #設定負載均衡的服務器列表 #upstream mysvr { # #weigth參數表示權值,權值越高被分配到的概率越大 # #本機上的Squid開啓3128端口 # #server 192.168.8.1:3128 weight=5; # #server 192.168.8.2:80 weight=1; # #server 192.168.8.3:80 weight=6; #} #第一個虛擬主機 server { #監聽IP端口 listen 80; #主機名 server_name localhost; #root #設置字符集 #charset koi8-r; #本虛擬server的訪問日誌 至關於局部變量 #access_log logs/host.access.log main; #日誌文件輸出格式 #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; location / { root html; index index.html index.htm; } #靜態文件緩存時間設置 #location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)${ # expires 30d; #} #靜態文件緩存時間設置 #location ~ .*\.(js|css)?${ # expires 1h; #} #對本server"/"啓用負載均衡 #location / { # proxy_pass http://mysvr; # proxy_redirect off; # proxy_set_header Host $host; # proxy_set_header X-Real-IP $remote_addr; # proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; # client_max_body_size 10m; # client_body_buffer_size 128k; # proxy_connect_timeout 90; # proxy_send_timeout 90; # proxy_read_timeout 90; # proxy_buffer_size 4k; # proxy_buffers 4 32k; # proxy_busy_buffers_size 64k; # proxy_temp_file_write_size 64k; #} #設定查看Nginx狀態的地址 #location /NginxStatus { # stub_status on; # access_log on; # auth_basic 「NginxStatus」; # auth_basic_user_file conf/htpasswd; #} #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; #} } # another virtual host using mix of IP-, name-, and port-based configuration server { #多監聽 listen localhost:8666; #主機名 server_name LIULJ2576; #WEB文件路徑 root E:/Portal; #默認首頁 index HomePage.html; #location / { # #這裏至關於局部變量 # root E:/Portal; # index HomePage.html; #} } # HTTPS server HTTPS SSL加密服務器 # #server { # listen 443; # server_name localhost; # ssl on; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_session_timeout 5m; # ssl_protocols SSLv2 SSLv3 TLSv1; # ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP; # ssl_prefer_server_ciphers on; # location / { # root html; # index index.html index.htm; # } #}
}#號爲註釋內容,咱們在cmd下運行nginx
啓動成功,出錯的話,能夠查詢日誌(日誌路徑是配置文件指定的,你能夠修改存到其它位置)
訪問一下第二個server 配置的localhost:8666地址,結果出現
3、Nginx能夠經過如下兩種方式來實現與Tomcat的耦合:
將靜態頁面請求交給Nginx,動態請求交給後端Tomcat處理。
將全部請求都交給後端的Tomcat服務器處理,同時利用Nginx自身的負載均衡功能進行多臺Tomcat服務器的負載均衡。
下面經過兩個配置實例分別講述這兩種實現
1、動態頁面和靜態頁面分離的實例
這裏假定Tomcat服務器的IP地址爲192.168.12.130,同時Tomcat服務器開放的服務器端口爲8080。Nginx相關配置代碼以下:
[plain] view plaincopyprint? 01.server {
02. listen 80;
03. server_name www.ixdba.net;
04. root /web/www/html;
05.
06.location /img/ {
07. alias /web/www/html/img/;
08.}
09.
10.location ~ (.jsp)|(.do)$ {
11. proxy_pass http://192.168.12.130:8080;
12. proxy_redirect off;
13. proxy_set_header Host $host;
14. proxy_set_header X-Real-IP $remote_addr;
15. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
16. client_max_body_size 10m;
17. client_body_buffer_size 128k;
18. proxy_connect_timeout 90;
19. proxy_send_timeout 90;
20. proxy_read_timeout 90;
21. proxy_buffer_size 4k;
22. proxy_buffers 4 32k;
23. proxy_busy_buffers_size 64k;
24. proxy_temp_file_write_size 64k;
25.}
26.
27.}
server {
listen 80;
server_name www.ixdba.net;
root /web/www/html;
location /img/ {
alias /web/www/html/img/;
}
location ~ (.jsp)|(.do)$ {
proxy_pass http://192.168.12.130:8080;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
}
}
在這個實例中,首先定義了一個虛擬主機www.ixdba.net,而後經過location指令將/web/www/html/img/目錄下的靜態文件交給Nginx來完成。最後一個location指令將全部以.jsp、.do結尾的文件都交給Tomcat服務器的8080端口來處理,即http://192.168.12.130:8080。
須要特別注意的是,在location指令中使用正則表達式後,proxy_pass後面的代理路徑不能含有地址連接,也就是不能寫成http://192.168.12.130:8080/,或者相似http://192.168.12.130:8080/jsp的形式。在location指令不使用正則表達式時,沒有此限制。
二、多個tomcat負載均衡的實例
這裏假定有3臺Tomcat服務器,分別開放不一樣的端口,地址以下:
[plain] view plaincopyprint? 01.192.168.12.131:8000
02.192.168.12.132:8080
03.192.168.12.133:8090
192.168.12.131:8000
192.168.12.132:8080
192.168.12.133:8090 Nginx的相關配置代碼以下:
[plain] view plaincopyprint? 01.upstream mytomcats {
02. server 192.168.12.131:8000;
03. server 192.168.12.132:8080;
04. server 192.168.12.133:8090;
05.}
06.
07.server {
08. listen 80;
09. server_name www.ixdba.net;
10.
11.location ~* .(jpg|gif|png|swf|flv|wma|wmv|asf|mp3|mmf|zip|rar)$ {
12. root /web/www/html/;
13.}
14.
15.location / {
16. proxy_pass http://mytomcats; 17. proxy_redirect off; 18. proxy_set_header Host $host; 19. proxy_set_header X-Real-IP $remote_addr; 20. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 21. client_max_body_size 10m; 22. client_body_buffer_size 128k; 23. proxy_connect_timeout 90; 24. proxy_send_timeout 90; 25. proxy_read_timeout 90; 26. proxy_buffer_size 4k; 27. proxy_buffers 4 32k; 28. proxy_busy_buffers_size 64k; 29. proxy_temp_file_write_size 64k; 30.} 31. 32.}