Nginx 配置實例-動靜分離

概述:

Nginx 動靜分離簡單來講就是把動態跟靜態請求分開,不能理解成只是單純的把動態頁面和 靜態頁面物理分離。嚴格意義上說應該是動態請求跟靜態請求分開,能夠理解成使用 Nginx 處理靜態頁面,Tomcat 處理動態頁面。html

動靜分離從目前實現角度來說大體分爲兩種, 一種是純粹把靜態文件獨立成單獨的域名,放在獨立的服務器上,也是目前主流推崇的方案;linux

另一種方法就是動態跟靜態文件混合在一塊兒發佈,經過 nginx 來分開。 經過 location 指定不一樣的後綴名實現不一樣的請求轉發。經過 expires 參數設置,可使 瀏覽器緩存過時時間,減小與服務器以前的請求和流量。nginx

具體 Expires 定義:是給一個資 源設定一個過時時間,也就是說無需去服務端驗證,直接經過瀏覽器自身確認是否過時便可, 因此不會產生額外的流量。此種方法很是適合不常常變更的資源。(若是常常更新的文件, 不建議使用 Expires 來緩存),我這裏設置 3d,表示在這 3 天以內訪問這個 URL,發送 一個請求,比對服務器該文件最後更新時間沒有變化,則不會從服務器抓取,返回狀態碼 304,若是有修改,則直接從服務器從新下載,返回狀態碼 200。centos

實驗代碼:

1. 在linux中準備靜態資源瀏覽器

1.1 建立靜態資源文件夾緩存

[root@VM-0-7-centos static]# pwd
/usr/local/static
[root@VM-0-7-centos static]# mkdir www image
[root@VM-0-7-centos static]# ll
total 8
drwxr-xr-x 2 root root 4096 Nov 18 09:55 image
drwxr-xr-x 2 root root 4096 Nov 18 09:55 www

1.2 上傳文件服務器

www 中上傳 index.html測試

image 中上傳 01.pngspa

[root@VM-0-7-centos static]# cd www
[root@VM-0-7-centos www]# pwd
/usr/local/static/www
[root@VM-0-7-centos www]# rz

[root@VM-0-7-centos www]# cd ../image
[root@VM-0-7-centos image]# pwd
/usr/local/static/image
[root@VM-0-7-centos image]# rz

[root@VM-0-7-centos image]# ll
total 416
-rw-r--r-- 1 root root 424359 Oct 13 10:03 01.png
[root@VM-0-7-centos image]# cd ../www
[root@VM-0-7-centos www]# ll
total 4
-rw-r--r-- 1 root root 50 Nov 18 09:57 index.html
[root@VM-0-7-centos www]#

2. 具體配置3d

2.1 配置nginx配置文件

主要配置 server 中 location 

root 爲訪問根目錄 設置爲準備好的靜態資源目錄 /usr/local/static

autoindex on : 可列出目錄

server {
        listen 1080;
        server_name 127.0.0.1;
        location /www/ {
                root /usr/local/static/;
                index index.html index.htm;
        }
        location /image/ {
                root /usr/local/static/;
                autoindex on;
        }

    }

2.2 保存配置後重啓nginx

這裏我已經配置nginx爲環境變量。

[root@VM-0-7-centos conf]# nginx -s reload
[root@VM-0-7-centos conf]#

3. 訪問測試

3.1 訪問www/index.html

3.2 訪問 image/01.png

3.3 autoindex on 做用

相關文章
相關標籤/搜索