nginx svgz support
.svgz files are compressed vector graphics.
When not inlining SVG it is often suggested to compress svg files in advance. This is the common svgz format.
But nginx does not deliver .svgz files correctly, because svgz files are not correctly encoded by nginx.
Plesk should add this by default:
location ~ .svgz$ {
add_header Content-Encoding gzip;
}
This is also a known generic nginx issue. For example: https://github.com/h5bp/server-configs-nginx/issues/86
As outlined in the https://github.com/h5bp/server-configs-nginx/issues/86 discussion, the suggested change will bring about contradictions in compression. This fix is merely a task for either creation of new MIME type or for Nginx developers. As this feature request has also only received a very low number of votes we must decline it.
-- PD