I have this setup in my httpd.conf file:
<files *.js>
SetOutputFilter DEFLATE
</files>
but for some reason, nothing is being compressed. I've cleared the cache in my browser and restarted my apache server. Why am I not get file compression?
I have this setup in my httpd.conf file:
<files *.js>
SetOutputFilter DEFLATE
</files>
but for some reason, nothing is being compressed. I've cleared the cache in my browser and restarted my apache server. Why am I not get file compression?
Found the answer. I had to add this line of code before the setoutputfilter:
LoadModule deflate_module modules/mod_deflate.so