Nginx配置靜態資源的root和alias配置

2021-08-11 10:27:58 字數 469 閱讀 5510

在配置nginx靜態資源的時候可以通過root和alias兩種方式處理

預設主機為192.168.1.1 埠為80下

location /test/ 

## 這裡使用root配置 如果訪問 192.168.1.1/test/a.html 則對應的路徑為:/usr/local/test/a.html

通過root配置 則location配置的/test/一定是要在root對應的/usr/local/目錄下要有的目錄

location /test/ 

## 這裡使用alias配置 如果訪問 192.168.1.1/test/a.html 則對應的路徑為:/usr/local/a.html

通過alias配置 則location配置的/test/ 不需要alias對應的/usr/local/下有,而是把訪問/test/後的資源在對應的alias 目錄下

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配置 優化靜態資源

開啟gzip功能,gzip就是對網路傳輸的資料進行壓縮處理,從而節省頻寬。開啟nginx.conf檔案,在http模組下增加gzip on 設定靜態資源的過期時間,在http模組的server模組下增加location js css location gif jpg jpeg png bmp swf...

Nginx靜態資源簡單配置

有時候需要訪問伺服器上的一些靜態資源,比如掛載其他裝置上的到本地的目錄,而本地的目錄不在nginx根目錄下,這個時候就需要簡單的做一下目錄對映來解決,比如想通過瀏覽器http ip image 2016 04 29 10 abc.jpg訪問到系統目錄 image data 2016 04 29 10...