15 lines
478 B
Nginx Configuration File
15 lines
478 B
Nginx Configuration File
|
# ----------------------------------------------------------------------
|
||
|
# | 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;
|
||
|
include h5bp/cross-origin/requests.conf;
|
||
|
}
|