Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cloudflare/ngx_brotli_module
Brotli module for NGINX, including the encoder
https://github.com/cloudflare/ngx_brotli_module
Last synced: about 1 month ago
JSON representation
Brotli module for NGINX, including the encoder
- Host: GitHub
- URL: https://github.com/cloudflare/ngx_brotli_module
- Owner: cloudflare
- License: bsd-2-clause
- Created: 2015-10-07T13:03:09.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-09-22T18:16:27.000Z (about 2 months ago)
- Last Synced: 2024-10-03T21:41:20.361Z (about 1 month ago)
- Language: C
- Size: 381 KB
- Stars: 114
- Watchers: 10
- Forks: 13
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ngx_brotli_module
This NGINX module enables the brotli compression for Accept-Encoding:"br".
Brotli is a recent compression format developed by Google.
https://tools.ietf.org/html/rfc7932
Use the "--add-module=" when configuring NGINX to enable the module.
Config options:
brotli on/off - enable the module. When brotli is enabled, it takes
precendence over gzip if Accept-Encoding has both gzip and
brotli.
brotli_comp_level num - the compression level used 1-11
brotli_min_length num - the minimal size of the resource to be compressed.
Brotli will compress only resources larger than this
value. If it is smaller it will let gzip to compress.Currently tested only on Linux.