Linux架構之Nginx 動靜分離

2022-08-27 05:27:08 字數 1240 閱讀 7217

[root@web01 ~]# cd /etc/nginx/conf.d/

#配置靜態資源

[root@web01 conf.d]# cat dj_oldboy.conf

server}​

#配置乙個主頁

[root@web01 conf.d]# echo "zls_test_web01" > /code/index.html

#建立目錄

[root@web01 conf.d]# mkdir -p /code/images/

[root@web01 conf.d]# cd /code/images/

​#上傳乙個靜態檔案

[root@web01 images]# rz cjk.gif

​修改網域名稱解析檔案,hosts,10.0.0.7   pic.drz.com  

​[root@web01 conf.d]# nginx -t

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok

nginx: configuration file /etc/nginx/nginx.conf test is successful

[root@web01 conf.d]# nginx -s reload​​

開啟瀏覽器,訪問

,頁面跳轉至靜態頁面。

開啟瀏覽器,訪問/pic5.gif

,頁面顯示動態圖。

​​修改網域名稱解析檔案,hosts,10.0.0.5   pic.drz.com ,通過負載訪問動態與靜態資源​​

[root@lb01 conf.d]# nginx -t

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok

nginx: configuration file /etc/nginx/nginx.conf test is successful

[root@lb01 conf.d]# nginx -s reload

企業實戰 Nginx動靜分離架構

負載均衡模組 配置檔案 中 location php jsp cgi shtml 表示匹配動態頁面請求,然後將通 過 proxy pass到後端伺服器,而 location html htm gif jpeg ico txt js css 表示 匹配靜態頁面請求本地返回。檢查 nginx配置是否正確...

nginx三 之動靜分離

就是將 靜態資源 html,css,img等檔案 與後台應用分開部署,提高 響應速度,降低對後台應用伺服器的請求。進入nginx安裝的conf目錄 cd usr local nginx conf 開啟nginx.conf檔案新增以下內容 usr local nginx sbin nginx s re...

nginx動靜分離配置 Nginx動靜分離

動靜分離,就是將jsp servlet等動態資源交由tomcat或其他web伺服器處理,將css js image等靜態資源交由nginx或其他http伺服器處理,充分發揮各自的優勢,減輕其他伺服器的壓力,搭建更為高效的系統架構。nginx動靜分析的實現 下面要搭建nginx,環境中有三颱nginx...