nginx靜態資源分離部署

2022-03-23 10:23:03 字數 423 閱讀 5992

修改nginx.conf檔案,用於nginx處理靜態資源。

主要配置如下(在server配置中加入location配置即可):

server

}

upstream blog.ha97.com

#本地動靜分離反向**配置

#所有jsp的頁面均交由tomcat或resin處理

location ~ .(jsp|jspx|do)?$

#所有靜態檔案由nginx直接讀取不經過tomcat或resin

使用nginx如何部署靜態資源

nginx部署靜態資源步驟 安裝,然後點選file ftp ftpupload settings add。然後進行配置 這樣只是為了方便編輯linux中檔案內容。第二步 將靜態資源放入nginx目錄下 比如我的是index 然後修改nginx.conf檔案 http server location ...

nginx配置靜態資源

http請求 server location project1 error page 500 502 503 504 50x.html location 50x.html 此時訪問www.test.com 進入location 訪問www.test.com project1 進入location p...

nginx處理靜態資源

前後端分離後,把前端頁面放入nginx中,在nginx配置如下 location vue office 正確的配置 root配置 alias配置 location images 錯誤的配置 root配置 alias配置 location images root配置 root後面位址 location...