Skip to the content.

NGINX: zstd Support

Recipes

./configure --add-module=/path/to/zstd-nginx-module
http {
    zstd on;
    zstd_dict_file /path/to/dict;
    # zstd_types text/html;
    # zstd_comp_level 11;
    # zstd_min_length 256;  # in bytes
    # zstd_buffers 32 4k | 16 8k;
    # zstd_static off;
}

More

References