Answers for "overall configuration gzip compression with nginx"

0

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;
    ...
}
Posted by: Guest on May-24-2021

Browse Popular Code Answers by Language