這篇文章主要為大家詳細介紹了Nginx靜態(tài)資源使用方法,Nginx靜態(tài)資源如何對文件進行壓縮和添加防盜鏈,零基礎(chǔ)也能參考此文章,感興趣的小伙伴們可以參考一下。
創(chuàng)新互聯(lián)建站長期為上1000家客戶提供的網(wǎng)站建設(shè)服務,團隊從業(yè)經(jīng)驗10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務;打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為滄縣企業(yè)提供專業(yè)的成都網(wǎng)站制作、網(wǎng)站設(shè)計,滄縣網(wǎng)站改版等技術(shù)服務。擁有十年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。Nginx作為靜態(tài)資源web服務器部署配置,傳輸非常的高效,常常用于靜態(tài)資源處理、請求、動靜分離!
非服務器動態(tài)運行生成的文件屬于靜態(tài)資源!
類型 | 種類 |
---|---|
瀏覽器端渲染 | HTML、CSS、JS |
圖片 | JPEG、GIF、PNG |
視頻 | FLV、MP4 |
文件 | TXT、任意下載文件 |
靜態(tài)資源傳輸延遲最小化!
如圖:
Syntax:sendfile on | off ;
Default:sendfile off ;
Context:http、server、location、if in location ;
Syntax:tcp_nopush on | off ;
Default:tcp_nopush off ;
Context:http、server、location ;
作用: sendfile開啟情況下, 提??絡(luò)包的'傳輸效率';
Syntax: tcp_nodelay on | off ;
Default: tcp_nodelay on ;
Context:http, server, location ;
作?: 在keepalive連接下,提??絡(luò)的傳輸‘實時性’;
Nginx 將響應報?發(fā)送?客戶端之前可以啟?壓縮功能,這能夠有效地節(jié)約帶寬,并提?響應?客戶端的速度。
Syntax: gzip on | off ;
Default: gzip off ;
Context: http, server, location, if in location ;
作?:傳輸壓縮;
Syntax: gzip_comp_level level ;
Default: gzip_comp_level 1 ;
Context: http, server, location ;
作?:壓縮本身?較耗費服務端性能 ;
Syntax: gzip_http_version 1.0 | 1.1 ;
Default: gzip_http_version 1.1 ;
Context: http, server, location ;
作?: 壓縮使?在http哪個協(xié)議, 主流版本1.1 ;
Syntax: gzip_static on | off | always ;
Default: gzip_static off ;
Context: http, server, location ;
作?: 預讀gzip功能 ;
[root@nginx ~]# mkdir -p /soft/code/images
[root@nginx ~]# vim /etc/nginx/conf.d/static_server.conf
server {
listen 80;
server_name 192.168.1.10;
sendfile on;
access_log /var/log/nginx/static_access.log main;
location ~ .*\.(jpg|gif|png)$ {
gzip on;
gzip_http_version 1.1;
gzip_comp_level 2;
gzip_types text/plain application/json application/x-javascript app lication/css application/xml application/xml+rss text/javascript application/x-httpd-php image/jpeg image/gif image/png;
root /soft/code/images;
}
}
[root@nginx ~]# nginx -t
[root@nginx ~]# nginx -s reload
由于圖片的壓縮效果不是太好,所以這里只附上配置!
[root@nginx ~]# mkdir -p /soft/code/doc
[root@nginx ~]# vim /etc/nginx/conf.d/static_server.conf
server {
listen 80;
server_name 192.168.1.10;
sendfile on;
access_log /var/log/nginx/static_access.log main;
location ~ .*\.(txt|xml)$ {
gzip on;
gzip_http_version 1.1;
gzip_comp_level 2;
gzip_types text/plain application/json application/x-javascript app lication/css application/xml application/xml+rss text/javascript application/x-httpd-php image/jpeg image/gif image/png;
root /soft/code/doc;
}
}
[root@nginx ~]# nginx -t
[root@nginx ~]# nginx -s reload
HTTP協(xié)議定義的緩存機制(如: Expires; Cache-control 等)
1)瀏覽器無緩存
瀏覽器請求——>無緩存——>請求web服務器——>請求響應——>呈現(xiàn)
2)瀏覽器有緩存
瀏覽器請求->有緩存->校驗過期->是否有更新->呈現(xiàn)
校驗是否過期 Expires HTTP1.0, Cache-Control(max-age) HTTP1.1
協(xié)議中Etag頭信息校驗 Etag ()
Last-Modified頭信息校驗 Last-Modified (具體時間)
Syntax: expires [modified] time ;
Default: expires off ;
Context: http, server, location, if in location ;
作?: 添加Cache-Control Expires頭 ;
[root@nginx conf.d]# vim static_server.conf
server {
listen 80;
server_name 192.168.1.10;
sendfile on;
access_log /var/log/nginx/static_access.log main;
location ~ .*\.(txt|js|css|html)$ {
root /soft/code/doc;
expires 1h;
}
location ~ .*\.(jpg|gif|png)$ {
root /soft/code/images;
expires 7d;
}
}
[root@nginx conf.d]# nginx -t
[root@nginx conf.d]# nginx -s reload
瀏覽器測試效果:
[root@nginx conf.d]# vim static_server.conf
server {
listen 80;
server_name 192.168.1.10;
sendfile on;
access_log /var/log/nginx/static_access.log main;
location ~ .*\.(txt|js|css|html)$ {
root /soft/code/doc;
add_header Cache-Control no-store;
add_header Pragma no-cache;
}
location ~ .*\.(jpg|gif|png)$ {
root /soft/code/images;
expires 7d;
}
}
[root@nginx conf.d]# nginx -t
[root@nginx conf.d]# nginx -s reload
瀏覽器測試效果:
盜鏈指的是在??的界?展示不在??服務器上的內(nèi)容,通過技術(shù)?段獲得他?服務器的資源地址,繞過別?資源展示??,在????向?戶提供此內(nèi)容,從?減輕??服務器的負擔,因為真實的空間和流量來?別?服務器;
防盜鏈設(shè)置思路: 區(qū)別哪些請求是?正常?戶請求;
基于http_refer 防盜鏈配置模塊:
Syntax: valid_referers none | blocked | server_names | string ...;
Default: —
Context: server, location
另一臺nginx服務器(初始的情況),編寫html文件:
[root@nginx02 conf.d]# vim /usr/share/nginx/html/dl.html
<html>
<head>
<meta charset="utf-8">
<title>pachong</title>
</head>
<body >
<img src="http://192.168.1.10/test.jpg">
</body>
</html>
[root@nginx02 conf.d]# nginx -t
[root@nginx02 conf.d]# nginx -s reload
第一臺服務正常訪問:
第二胎服務器盜用第一臺服務器的圖片:
[root@nginx conf.d]# vim static.conf
server {
listen 80;
server_name 192.168.1.10;
valid_referers none blocked 192.168.1.10;
location ~ .*\.(jpg|gif|png)$ {
if ($invalid_referer) {
return 403;
break;
}
root /soft/code/images;
}
}
[root@nginx conf.d]# nginx -t
[root@nginx conf.d]# nginx -s reload
再次訪問第二臺服務器:
關(guān)于Nginx靜態(tài)資源使用方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果喜歡這篇文章,不如把它分享出去讓更多的人看到。
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
文章題目:Nginx靜態(tài)資源使用方法-創(chuàng)新互聯(lián)
路徑分享:http://www.rwnh.cn/article14/cecede.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站設(shè)計、微信小程序、網(wǎng)站維護、外貿(mào)建站、全網(wǎng)營銷推廣、網(wǎng)站收錄
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)