就是將**靜態資源(html,,css,img等檔案)與後台應用分開部署,提高**響應速度,降低對後台應用伺服器的請求。
#進入nginx安裝的conf目錄
cd /usr/local/nginx/conf/
#開啟nginx.conf檔案新增以下內容:
/usr/local/nginx/sbin/nginx -s reload1、複製tomcat中的demo專案到/usr/local/nginx/html目錄下2、建立index.html測試頁面,分別放在tomcat1、tomcat2的demo專案,內容如下:
doctype html3、修改index.html中的title和h3標籤為nginx,以便測試區分。>
<
html
lang
="en"
>
<
head
>
<
meta
charset
="utf-8"
>
<
title
>welcom tomcat
title
>
head
>
<
body
>
<
h3>welcom tomcat
h3>
body
>
html
>
訪問測試頁面, 我們可以看到html靜態資源的請求被分發在配置的nginx伺服器,而不是tomcat
nginx動靜分離配置 Nginx動靜分離
動靜分離,就是將jsp servlet等動態資源交由tomcat或其他web伺服器處理,將css js image等靜態資源交由nginx或其他http伺服器處理,充分發揮各自的優勢,減輕其他伺服器的壓力,搭建更為高效的系統架構。nginx動靜分析的實現 下面要搭建nginx,環境中有三颱nginx...
nginx 動靜分離
定義nginx執行的使用者 和 使用者組 如果對應伺服器暴露在外面的話建議使用許可權較小的使用者 防止被入侵 user www www nginx程序數,建議設定為等於cpu總核心數 worker processes 8 開啟全域性錯誤日誌型別 error log var log nginx err...
nginx動靜分離
nginx location的正則法則 為區分大小寫的匹配。不區分大小寫的匹配 匹配firefox的正則同時匹配firefox 不匹配的 不匹配的 匹配除換行符以外的任意字元 location 匹配的優先順序 與location在配置檔案中的順序無關 location 注意一點的是 經同事提醒,可以...