因為在編譯nginx時需要pcre環境
tar xzvf pcre-8.10.tar.gz 解壓後的路徑為/opt/pcre-8.10
3、開始編譯安裝nginx
cd nginx-0.8.54
./configure --with-pcre=/opt/pcre-8.10
make
make install
4、預設安裝的路徑為/usr/local/nginx
5、最簡單配置
在/usr/local/nginx/conf/nginx.conf 檔案中加入
include /usr/local/nginx/conf/proxy.conf;
然後在 /usr/local/nginx/conf/ 目錄中建立檔案 proxy.conf
#!nginx (-)
# proxy.conf
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_buffers 32 4k;
6、在nginx.conf中描述哪些 url 是由 nginx 來處理,哪些由 nginx**給tomcat進行處理
location /
location ~*.(jsp|action)$
7、啟動nginx
cd /usr/local/nginx/sbin
./nginx
用ip位址訪問80埠有以下提示,表示配置成功
參考:
零基礎學習 nginx tomcat
我們平時對j2ee開發的時候使用的是tomcat伺服器,tomcat伺服器是用來解析servlet動態網頁的,比如jsp。而apache web伺服器只能處理靜態頁面,如html,css等。其實tomcat也可以解析靜態頁面,但是效率很差,我們在開發的時候因為注重開發,並不用考慮效能問題,所以並不需...
學習筆記 Nginx tomcat負載均衡策略
nginx中.配置檔案是conf路徑下的nginx.conf檔案.開啟之後會看到nginx本身的server 服務配置.ps tomcat集群嘛.當然要至少兩個tomcat吧.所以掠過了配置兩個tomcat的過程.還有還有.沒有買伺服器操作.在本地配置了位址網域名稱.www.canmall.com ...
spring學習初步
package cn.bupt.duming.service public inte ce greetingservice 儘管看起來,在此處沒必要隱藏介面,但是我們還是建議將實現與介面分離。public class greetingserviceimpl implements greetingse...