Nginx做動靜分離

2022-06-15 12:42:11 字數 558 閱讀 4359

目標:通過訪問       可以訪問到  e:\tool\nginx\nginx-1.12.2\html\downlocal\1.jpg

1.在nginx的html中建立資料夾downlocal並放入乙個命名為1.jpg

2.在nginx的conf檔案中新增配置檔案static_pool並新增內容

location /downlocal/

3.修改server中監聽的ip
listen 80;   #預設為80

server_name 192.168.43.196;

4. 在nginx.conf的server標籤中新增 include static_pool;
#啟動nginx 訪問 就可以訪問到我們的了

另外兩篇nginx心得。

nginx做反向**:

nginx做負載均衡:

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 注意一點的是 經同事提醒,可以...