blob: b1431a9779470bf446af98af508ee781e92f3534 [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
######################################################################
#flags and options are:
#
# enabled: default true, set true/false to enable/disable plugin for specific host
#
# remove-accept-encoding: this sets if the plugin should hide the accept encoding from origin servers
# - to ease the load on the origins
# - for when the proxy parses responses, and the resulting compression/decompression
# is wasteful
#
# cache: when set, the plugin stores the uncompressed and compressed response as alternates
#
# compressible-content-type: wildcard pattern for matching compressible content types
#
# allow: wildcard pattern for allow/disallowing compression on urls
# - prefix pattern with ! to disallow
#
# compressible-status-code: a comma separated list of status codes in which to enable compression
#
# minimum-content-length: minimum content length for compression to be enabled (in bytes)
# - this setting only applies if the origin response has a Content-Length header
#
######################################################################
#first, we configure the default/global plugin behaviour
enabled true
remove-accept-encoding true
cache false
compressible-content-type text/*
compressible-content-type *javascript*
#disabling is possible too
compressible-content-type !text/javascript
compressible-status-code 200
allow !/notthis/*.js
allow !/notthat*
allow !*/bla*
minimum-content-length 1024
#supported algorithms
supported-algorithms br,gzip
#override the global configuration for a host.
#www.foo.nl does NOT inherit anything
[www.foo.nl]
enabled true
cache true
remove-accept-encoding true
compressible-content-type text/*
compressible-status-code 200,206,409
minimum-content-length 1024
allow /this/*.js
allow !/notthis/*.js
allow !/notthat*