溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Nginx服務(wù)優(yōu)化(三)配置網(wǎng)頁緩存時間

發(fā)布時間:2020-07-25 11:13:57 來源:網(wǎng)絡(luò) 閱讀:607 作者:wx5d2c2d660c282 欄目:系統(tǒng)運(yùn)維

配置Nginx網(wǎng)頁緩存時間

當(dāng)Nginx將網(wǎng)頁數(shù)據(jù)返回給客戶端后,可設(shè)置緩存的時間,以方便在日后進(jìn)行相同內(nèi)容的請求時直接返回,避免重復(fù)請求,加快了訪問速度。一般針對靜態(tài)網(wǎng)頁設(shè)置,對動態(tài)網(wǎng)頁不設(shè)置緩存時間??稍赪indows客戶端中使用fiddler查看網(wǎng)頁緩存時間。

設(shè)置方法

可修改配置文件,在http段、或者server段、 或者location段加入對特定內(nèi)容的過期參數(shù)

1.將圖片復(fù)制到站點目錄

[root@localhost nginx-1.12.2]# cd /mnt/tools/
[root@localhost tools]# ls
awstats-7.6.tar.gz                fiddler.exe                jdk-8u191-windows-x64.zip  LNMP         zhuang.mp4
cronolog-1.6.2-14.el7.x86_64.rpm  forbid.png                 john-1.8.0.tar.gz          picture.jpg
extundelete-0.2.4.tar.bz2         intellijideahahau2018.rar  LAMP-C7                    yuan.mp4
[root@localhost tools]# cp picture.jpg /usr/local/nginx/html/    //復(fù)制圖片
[root@localhost tools]# cd /usr/local/nginx/html/
[root@localhost html]# ls
50x.html  index.html  picture.jpg
[root@localhost html]# 

2.在首頁文件添加引用圖片

[root@localhost html]# vim index.html

<h2>Welcome to nginx!</h2>
<img src="picture.jpg"/>   //添加

[root@localhost html]# systemctl stop firewalld.service    //關(guān)閉防火墻
[root@localhost html]# setenforce 0   //關(guān)閉增強(qiáng)性安全功能
[root@localhost html]# 

3.用win10虛擬機(jī)訪問nginx服務(wù),并抓包(未開啟緩存)

Nginx服務(wù)優(yōu)化(三)配置網(wǎng)頁緩存時間

Nginx服務(wù)優(yōu)化(三)配置網(wǎng)頁緩存時間

4.在nginx配置文件中添加緩存模塊

[root@localhost html]# vim /usr/local/nginx/conf/nginx.conf

        location ~ \.(gif|jepg|jpg|ico|bmp|png)$ {   //添加緩存
            root html;   //站點
            expires 1d;   //緩存一天
        }
[root@localhost html]# service nginx restart    //重啟服務(wù)
[root@localhost html]#

5.再次用win10虛擬機(jī)訪問nginx服務(wù),抓包(開啟緩存)

Nginx服務(wù)優(yōu)化(三)配置網(wǎng)頁緩存時間

Nginx服務(wù)優(yōu)化(三)配置網(wǎng)頁緩存時間

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI