Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

nginx gzip

server {
    gzip on;
    gzip_disable "msie6";

    gzip_vary on;
    gzip_proxied any;
    gzip_comp_level 6;
    gzip_buffers 16 8k;
    gzip_http_version 1.1;
    gzip_min_length 256;
    gzip_types
    application/atom+xml
    application/geo+json
    application/javascript
    application/x-javascript
    application/json
    application/ld+json
    application/manifest+json
    application/rdf+xml
    application/rss+xml
    application/xhtml+xml
    application/xml
    font/eot
    font/otf
    font/ttf
    image/svg+xml
    text/css
    text/javascript
    text/plain
    text/xml;
}
Comment

overall configuration gzip compression with nginx

server {
    gzip on;
    gzip_types      text/plain application/xml;
    gzip_proxied    no-cache no-store private expired auth;
    gzip_min_length 1000;
    ...
}
Comment

PREVIOUS NEXT
Code Example
Shell :: .sh script: check if file exist 
Shell :: git add -A ignore large files 
Shell :: install arial font to linux 
Shell :: finding mac address on ubuntu 
Shell :: format flashdisk terminal 
Shell :: find gradle version 
Shell :: uninstall tesseract 4 
Shell :: -s and --save 
Shell :: get the latest file in a directory powershell 
Shell :: ubuntu limit cpu on running process 
Shell :: libdnet 
Shell :: microstack change horizon port 
Shell :: how to save multiple files in vim at once 
Shell :: get unpushed commits 
Shell :: extract tar 
Shell :: Upgrading git on CentOS 
Shell :: gh login 
Shell :: change lunix password 
Shell :: cordova plugin list save 
Shell :: add token to cli git 
Shell :: run cron once a day 
Shell :: git diff exclude file 
Shell :: ubuntu install bluez 
Shell :: how to get divided number in mac terminal 
Shell :: linux find file recursively 
Shell :: delete cash on ubuntu 
Shell :: firebase deploy only hosting command 
Shell :: git pull and overwrite 
Shell :: filmora 10 crack download without watermark 
Shell :: ffmpeg cutting time video 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =