server-configs-nginx/h5bp/location/web_performance_svgz-compre...

17 lines
582 B
Nginx Configuration File
Raw Normal View History

# ----------------------------------------------------------------------
# | 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;
include h5bp/cross-origin/requests.conf;
}