2019-03-09 15:08:44 +01:00
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# | SVGZ Compression |
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
|
|
|
|
# SVGZ files are already compressed.
|
|
|
|
# Disable gzip function for `.svgz` files.
|
|
|
|
|
|
|
|
location ~* \.svgz$ {
|
|
|
|
gzip off;
|
|
|
|
add_header Content-Encoding gzip;
|
|
|
|
|
|
|
|
include h5bp/security/x-content-type-options.conf;
|
2020-04-12 23:30:08 +02:00
|
|
|
include h5bp/security/content-security-policy.conf;
|
|
|
|
include h5bp/security/referrer-policy.conf;
|
2019-03-09 15:08:44 +01:00
|
|
|
include h5bp/cross-origin/requests.conf;
|
|
|
|
}
|