1. 程式人生 > >Nginx服務學習(11)-應用場景

Nginx服務學習(11)-應用場景

code vpd ces oca eve 壓縮 pro off 傳輸

Nginx服務

Nginx靜態資源web服務
Nginx代理服務
Nginx負載均衡調度
Nginx緩存

技術分享圖片

CDN分發網絡
技術分享圖片

模塊配置

Syntax:sendfile on | off;   ##文件讀取
Default:sendfile off;
Context:http,server,location,if in location

Syntax:tcp_nopush on | off;    ##sendfile開啟的情況下,提高網絡包傳輸的效率
Default:tcp_nopush off;
Context:http,server,location

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

技術分享圖片

技術分享圖片

Nginx服務學習(11)-應用場景