Subscribe

View this package for all CentOS/RHEL versions →

How to install nginx-module-unzstd in CentOS/RHEL 9 (aarch64)

Decompresses Zstd-encoded responses for clients that do not support it

License: BSD-2-Clause Vendor: GetPageSpeed LLC https://github.com/dvershinin/ngx_http_unzstd_filter_module

Install

sudo dnf -y install https://extras.getpagespeed.com/release-latest.rpm
sudo dnf -y install nginx-module-unzstd

Description

The ngx_unzstd module is a filter that decompresses responses with Content-Encoding: zstd for clients that do not support Zstd encoding method. It allows to save I/O by unconditional Zstd compression of responses. This complements the zstd compression module for full zstd support. To enable this module after installation, add the following to /etc/nginx/nginx.conf and reload NGINX: load_module modules/ngx_http_unzstd_filter_module.so; Alternatively, enable all installed modules by adding this line to the top of /etc/nginx/nginx.conf: include /usr/share/nginx/modules/*.conf;