您好,登錄后才能下訂單哦!
當(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)頁緩存時間。
可修改配置文件,在http段、或者server段、 或者location段加入對特定內(nèi)容的過期參數(shù)
[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]#
[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]#
[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]#
免責(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)容。