How To Use Mod Deflate Insted Gzip?

anyone running on mod deflate?

[quote name='demeldoo' timestamp='1434711822' post='219539']

anyone running on mod deflate?

[/quote]



From 4.3.1 this should be used automatically. In .htaccess we added rules for it.

```php


Compress HTML, CSS, JavaScript, Text, XML, fonts

AddOutputFilterByType DEFLATE application/javascript application/x-javascript text/javascript application/json

AddOutputFilterByType DEFLATE application/x-font application/x-font-opentype application/x-font-otf application/x-font-truetype application/x-font-ttf font/opentype font/otf font/ttf application/x-woff application/x-font-woff

AddOutputFilterByType DEFLATE text/css text/html text/plain




Remove browser bugs (only needed for really old browsers)

BrowserMatch ^Mozilla/4 gzip-only-text/html

BrowserMatch ^Mozilla/4.0[678] no-gzip

BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

Header append Vary User-Agent



```

[quote name='imac' timestamp='1434720494' post='219579']

From 4.3.1 this should be used automatically. In .htaccess we added rules for it.

```php


Compress HTML, CSS, JavaScript, Text, XML, fonts

AddOutputFilterByType DEFLATE application/javascript application/x-javascript text/javascript application/json

AddOutputFilterByType DEFLATE application/x-font application/x-font-opentype application/x-font-otf application/x-font-truetype application/x-font-ttf font/opentype font/otf font/ttf application/x-woff application/x-font-woff

AddOutputFilterByType DEFLATE text/css text/html text/plain




Remove browser bugs (only needed for really old browsers)

BrowserMatch ^Mozilla/4 gzip-only-text/html

BrowserMatch ^Mozilla/4.0[678] no-gzip

BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

Header append Vary User-Agent



```

[/quote]

hello imac,

yes i have this code in ht and deflate is running on server but instead is gzip used… do i have to set the gzip to false in the config file to get deflate working?