apache: Serve SVG files compressed using gzip

- SVG is not one of the formats for which compress is turned on automatically by
  Apache configuration.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2019-05-06 19:51:56 -07:00 committed by James Valleroy
parent c61eea8e11
commit c35938e180
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -21,3 +21,10 @@ RedirectMatch "^/freedombox" "/plinth"
RewriteRule /favicon\.ico$ "/plinth/static/theme/img/favicon.ico" [PT]
</IfModule>
</Location>
##
## Serve SVG files compressed using gzip.
##
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE image/svg+xml
</IfModule>