Skip to content

mod_brotli is Brotli compression module for Apache HTTPD Server.

License

Notifications You must be signed in to change notification settings

kjdev/apache-mod-brotli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f01b0d8 · Feb 18, 2018

History

45 Commits
Jul 31, 2017
Sep 24, 2017
Jul 31, 2017
Apr 3, 2016
Mar 2, 2016
Jul 31, 2017
Apr 3, 2016
Sep 24, 2017
Feb 18, 2018
Sep 4, 2017
Sep 24, 2017
Sep 24, 2017

Repository files navigation

mod_brotli

NOTE: Please use the official module since Apache 2.4.26 : Apache Module mod_brotli

Build Status

mod_brotli is a Brotli compression module for Apache HTTPD Server.

Requires

Build

git clone --depth=1 --recursive https://github.com/kjdev/apache-mod-brotli.git
cd apache-mod-brotli
./autogen.sh
./configure
make

Install

install -p -m 755 -D .libs/mod_brotli.so /etc/httpd/modules/mod_brotli.so

Configuration

httpd.conf:

# Load module
LoadModule brotli_module modules/mod_brotli.so

<IfModule brotli_module>
  # Output filter
  AddOutputFilterByType BROTLI text/html text/plain text/css text/xml

  # SetOutputFilter BROTLI
  # SetEnvIfNoCase Request_URI \.txt$ no-br

  # Compression
  ## BrotliCompressionLevel: 0-11 (default: 11)
  BrotliCompressionLevel 10

  ## BrotliWindowSize: 10-24 (default: 22)
  BrotliWindowSize 22

  # Specifies how to change the ETag header when the response is compressed
  ## BrotliAlterEtag: AddSuffix, NoChange, Remove (default: AddSuffix)
  BrotliAlterEtag AddSuffix

  # Filter note
  BrotliFilterNote Input  brotli_in
  BrotliFilterNote Output brotli_out
  BrotliFilterNote Ratio  brotli_ratio

  LogFormat '"%r" %{brotli_out}n/%{brotli_in}n (%{brotli_ratio}n)' brotli
  CustomLog logs/access_log brotli
</IfModule>

About

mod_brotli is Brotli compression module for Apache HTTPD Server.

Resources

License

Stars

Watchers

Forks

Packages

No packages published