標籤:
Apache對Java的支援很靈活,它們的結合度也很高,例如Apache+Tomcat和Apache+resin等都可以實現對Java應用 的支援。Apache一般採用一個內建模組來和Java應用伺服器打交道。與Apache相比,Nginx在配合Java應用伺服器方面,耦合度很低,它 只能通過自身的反向 Proxy功能來實現與Java應用伺服器的支援。但這恰恰是Nginx的一個優點,耦合度的降低,可以使Nginx與Java伺服器的相互 影響降到最低。
接下來通過Nginx+Tomcat的執行個體來講解Nginx對Java的支援。Tomcat在高並發環境下處理動態請求時 效能很低,而在處理靜態頁面更加脆弱。雖然Tomcat的最新版本支援epoll,但是通過Nginx來處理靜態頁面要比通過Tomcat處理在效能方面 好很多。
Nginx可以通過以下兩種方式來實現與Tomcat的耦合:
將靜態頁面請求交給Nginx,動態請求交給後端Tomcat處理。
將所有請求都交給後端的Tomcat伺服器處理,同時利用Nginx自身的負載平衡功能進行多台Tomcat伺服器的負載平衡。
下面通過兩個配置執行個體分別講述這兩種實現Nginx與Tomcat耦合的方式。
1.動態網頁面與靜態頁面分離的執行個體
這裡假定Tomcat伺服器的IP地址為192.168.12.130,同時Tomcat伺服器開放的伺服器連接埠為8080。Nginx相關配置代碼如下:
server { listen 80; server_name www.abc.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.abc.net,然後通過location指令將/web/www/html/img/目錄下的靜態檔案交給Nginx來完成。最後一個location指令將所有以.jsp、.do結尾的檔案都交給Tomcat伺服器的8080連接埠來處理,即http://192.168.12.130:8080。
需要特別注意的是,在location指令中使用Regex後,proxy_pass後面的代理路徑不能含有地址連結,也就是不能寫成http://192.168.12.130:8080/,或者類似http://192.168.12.130:8080/jsp的形式。在location指令不使用Regex時,沒有此限制。
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.abc.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.abc.net的虛擬機器主機;然後通過location指令以Regex的方式將指定類型的檔案全部交給Nginx去處理;最後將其他所有請求全部交給負載平衡組來處理。
這裡還有一點需要注意,如果在location指令使用Regex後再用alias指令,Nginx是不支援的。
轉載:http://www.blogjava.net/sliverfancy/archive/2012/07/31/384400.html
一、配置目標
1、通過lnmp完成基礎環境的安裝
通過lnmp安裝後,相關軟體的位置請參考其官方說明。安裝後我單獨通過氣官方說明,升級了nginx的版本
2、配置nginx使之能滿足php+java環境在一台機器上的複用
二、相關安裝說明
1、將tomcat安裝到/usr/local/tomcat6
2、將nginx安裝到/usr/local/nginx
3、將java項目安裝到tomcat6/webapps下
4、將php相關項目直接安裝到/usr/local/下
三、相關配置說明
主要說明幾個主設定檔的情況
1、nginx.conf
user www www; worker_processes 1; error_log /home/wwwlogs/nginx_error.log crit; pid /usr/local/nginx/logs/nginx.pid; #Specifies the value for maximum file descriptors that can be opened by this process. worker_rlimit_nofile 51200; events { use epoll; worker_connections 51200; } #fastcgi參數的配置很重要。對效能影響較大 http { include mime.types; default_type application/octet-stream; server_names_hash_bucket_size 128; client_header_buffer_size 32k; large_client_header_buffers 4 32k; client_max_body_size 50m; sendfile on; tcp_nopush on; keepalive_timeout 60; tcp_nodelay on; fastcgi_connect_timeout 300; fastcgi_send_timeout 300; fastcgi_read_timeout 300; fastcgi_buffer_size 256k; fastcgi_buffers 8 256k; fastcgi_busy_buffers_size 512k; fastcgi_temp_file_write_size 512k; gzip on; gzip_min_length 1k; gzip_buffers 4 16k; gzip_http_version 1.0; gzip_comp_level 2; gzip_types text/plain application/x-javascript text/css application/xml; gzip_vary on; #limit_zone crawler $binary_remote_addr 10m; #log format log_format access ‘$remote_addr - $remote_user [$time_local] "$request" ‘ ‘$status $body_bytes_sent "$http_referer" ‘ ‘"$http_user_agent" $http_x_forwarded_for‘; #核心指出了各個網域名稱的設定檔位置,在nginx/conf/vhost目錄中 include vhost/*.conf; }
2、vhost(在nginx.conf指明了相關網域名稱對應的設定檔位置)
(1)、php項目配置:檔案名稱abc.abc.com.conf
這裡我將一個網域名稱的相關配置在這裡展示:abc.abc.com
server { listen 80; server_name abc.abc.com; index index.html index.htm index.php; root /usr/local/discuzx/upload; location ~ .*\.(php|php5)?$ { try_files $uri =404; fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_index index.php; include fcgi.conf; } location /status { stub_status on; access_log off; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)?$ { expires 12h; } access_log /home/wwwlogs/access.log access; }
(2)、java項目配置:檔案名稱www.abc.cn.conf
這裡我指定了一個java項目的配置 www.abc.cn
server { listen 80; server_name www.abc.cn; #charset koi8-r; access_log logs/dev/null; root /usr/local/tomcat6/webapps/quickbook/; #將請求反向 Proxy到tomcat應用伺服器上了 location / { index index.jsp index.html index.htm ; 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_buffers 32 4k; proxy_connect_timeout 3; proxy_send_timeout 30; proxy_read_timeout 30; proxy_pass http://127.0.0.1:8080; } }
三、總結
1、主要是nginx將各個子網域名稱的配置放到conf/vhost中獨立處理
2、每個vhost下的設定檔都獨立生效
3、nginx只是將請求轉寄到後端的應用伺服器上
4、啟動的時候需要按照如下次序啟動
(1)、啟動mysql資料庫
(2)、啟動tomcat
(3)、啟動nginx
轉載:/usr/local/tomcat6/webapps/quickbook/
在linux下配置nginx+java+php的環境