logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Zstd support and use ?
Author
bagu



Joined: 06 Jan 2011
Posts: 189
Location: France

PostPosted: Tue 14 May '24 22:49    Post subject: Zstd support and use ? Reply with quote

Hello,

Does apache support zstd compression ? And, if yes, how to use it as prefered compression ?

Thanks
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7334
Location: Germany, Next to Hamburg

PostPosted: Wed 15 May '24 9:47    Post subject: Reply with quote

No, it doesn't support it yet. deflate/gzip(zlib), and brotli.

Example with brotli prefered

Code:

<IfModule mod_deflate.c>
        AddOutputFilterByType BROTLI;DEFLATE text/html text/plain text/xml text/php text/css text/js text/javascript text/javascript-x application/x-javascript font/truetype
        AddOutputFilterByType BROTLI;DEFLATE application/javascript
                AddOutputfilterByType BROTLI;DEFLATE application/vnd.mozilla.xul+xml
        DeflateCompressionLevel 9
</IfModule>
Back to top
bagu



Joined: 06 Jan 2011
Posts: 189
Location: France

PostPosted: Wed 15 May '24 21:43    Post subject: Reply with quote

Ok, thanks.

Hope it will be supported in the future.
Back to top


Reply to topic   Topic: Zstd support and use ? View previous topic :: View next topic
Post new topic   Forum Index -> Apache