Use LZF Compression instead GZIP with NginX

316 views Asked by At

Is there a way to change the handler for compression from gzip to lzf in nginx ?

Actual config:

    gzip  on;
    gzip_disable "msie6";
    gzip_vary on;
    gzip_proxied any;
    gzip_comp_level 6;
    gzip_buffers 16 8k;
    gzip_min_length     1024;
    gzip_http_version 1.1;
    gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript; 

can be it translated to ?

lzf on;
..
..
0

There are 0 answers