You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
542 B
16 lines
542 B
## |
|
## apache-brotli.conf -- Apache configuration for mod_brotli |
|
## |
|
|
|
LoadModule brotli_module @l_prefix@/libexec/apache/mod_brotli.so |
|
|
|
<IfModule brotli_module> |
|
BrotliCompressionLevel 11 |
|
BrotliWindowSize 22 |
|
BrotliFilterNote Input brotli_in |
|
BrotliFilterNote Output brotli_out |
|
BrotliFilterNote Ratio brotli_ratio |
|
BrotliAlterEtag AddSuffix |
|
AddOutputFilterByType BROTLI text/plain text/html text/xml application/javascript application/json text/css image/svg+xml |
|
</IfModule> |
|
|
|
|