IBM HTTP Server da GZIP Ayarları
IBM Http Server üzerinde gzip ayarları yapmak için /opt/IBM/HTTPServer/conf/httpd.conf dosyası içinde;
LoadModule deflate_module modules/mod_deflate.so satırını enable edin.
Aşağıdaki kod satırını ilave edin ve restart edin :
<IfModule mod_deflate.c> DeflateFilterNote Input instream DeflateFilterNote Output outstream DeflateFilterNote Ratio ratio LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate <Location / > # Insert filter SetOutputFilter DEFLATE # Don't compress images or binaries SetEnvIfNoCase Request_URI \ \.(?:gif|[jm]pe?g|png|t?gz|bz2*|zip|exe|iso|avi)$ no-gzip dont-vary </Location> </IfModule>
IBM HTTP Server Restart için;
/opt/IBM/HTTPServer/bin/apachectl stop;
/opt/IBM/HTTPServer/bin/apachectl start;
Kaynak : http://docs.oracle.com/cd/E24902_01/doc.91/e18841/enablecomp.htm












