diff options
-rw-r--r-- | content/articles/site-backend.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/content/articles/site-backend.md b/content/articles/site-backend.md index af64015..e93ded2 100644 --- a/content/articles/site-backend.md +++ b/content/articles/site-backend.md @@ -322,7 +322,12 @@ redirects removed: #### HTTP Compression -[HTTP compression][] is supported via [mod\_deflate][mod-deflate]. +[HTTP compression][] is supported via [mod\_deflate][mod-deflate]. The +list of [MIME types][] has been adjusted, like so: + +```apache +AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/x-javascript text/csv application/json text/json image/svg+xml +``` It is safe for this site to enable [mod\_deflate][mod-deflate] because it does not use [cookies][] and is not vulnerable to [BREACH][]. |