Mod_gzip Sebagai HTTP Kompresor

Apa itu mod_gzip? mod_gzip merupakan external extension module yang berfungsi untuk mengkompress http output   apache untuk kecepatan pengir...

Apa itu mod_gzip?
mod_gzip merupakan external extension module yang berfungsi untuk mengkompress http output   apache untuk kecepatan pengiriman text atau html sampai sepuluh kali lipat jika di bandingkan tanpa kompresi.
Sesuai dengan namanya mod_gzip , modul ini menggunakan gzip sebagai metoda kompresi yang mampu mereduksi pengiriman volume sebuah website melalui http protokol. Keuntungan  dari menggunakan mod_gzip  yang  saya rasakan adalah :
  1. Meminimalisasi bandwidth output  dari sebuah website, terutama website yang memiliki batas maksimal bandwidth  perbulan.
  2. Memungkinkan mempercepat akses sebuah  website, sehingga orang dengan kecepatan bandwidth kecil pun bisa mengakses website dengan nyaman.
Mungkin timbul pertanyaan di diri anda bisakah mod_gzip saya pakai? Seperti judul di atas mod_gzip biasanya di gunakan pada apache 1.3, sedangkan untuk apache versi 2  menggunakan mod_deflate.
Pertanyaan selanjutnya mungkin terlintas di benak anda adalah bagaimana cara pengaplikasian mod_gzip ini?
Tentunya caranya tidaklah terlalu sulit, hanya perlu membaca sebuah manual apache dan beberapa tutorial tentang mod_gzip  anda langsung bisa mengaplikasi kan nya.
Diawali dengan instalasi apache, mod_gzip dan pengconfigurasian apache sehingga mod_gzip dapat digunakan.
Pada tutorial pak budsz https://indofreebsd.or.id/installasi-qmail-2.inbsd pernah di bahas tentang tata cara instalasi apache support mod_gzip. Kali ini saya akan hadirkan tentang cara instalasi melalui ports collection
Pertama, masuklah ke dalam mesin anda sebagai root.
indofreebsd#  cd  /usr/ports/www/apache13/ ; make install clean
indofreebsd# cd  /usr/ports/www/mod_gzip ; make install clean
lalu edit httpd.conf anda dan pastikan module gzip di load
LoadModule gzip_module        libexec/apache/mod_gzip.so
dan tambahkan directive ini pada akhir httpd.conf anda:
<IfModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_can_negotiate Yes
mod_gzip_static_suffix .gz
AddEncoding gzip .gz
mod_gzip_update_static No
mod_gzip_command_version '/mod_gzip_status'
mod_gzip_keep_workfiles No
mod_gzip_minimum_file_size 0
mod_gzip_maximum_file_size 1000000
mod_gzip_maximum_inmem_size 100000
mod_gzip_min_http 1000
mod_gzip_handle_methods GET POST
mod_gzip_item_exclude reqheader "User-agent: Mozilla/4.0[678]"
mod_gzip_item_include file \.htm$
mod_gzip_item_include file \.html$
mod_gzip_item_include file \.shtml$
mod_gzip_item_include file \.shtm$
mod_gzip_item_include file \.jsp$
mod_gzip_item_include file \.php$
mod_gzip_item_include file \.pl$
mod_gzip_item_include file \.cgi$
mod_gzip_item_include mime text/.*
mod_gzip_item_include mime ^application/x-httpd-php
mod_gzip_item_include mime httpd/unix-directory
mod_gzip_item_include handler ^perl-script$
mod_gzip_item_include handler ^server-status$
mod_gzip_item_include handler ^server-info$
mod_gzip_item_exclude file .css$
mod_gzip_item_exclude file .js$
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_include mime ^text/html$
mod_gzip_item_include mime ^text/plain$
mod_gzip_item_include mime ^httpd/unix-directory$
mod_gzip_item_exclude mime ^image/
mod_gzip_dechunk Yes
LogFormat  "%h %l %u %t \"%V %r\" %<s %b mod_gzip: %{mod_gzip_result}n In:%{mod_gzip_input_size}n -< Out:%{mod_gzip_output_size}n = %{mod_gzip_compression_ratio}n pct." common_with_mod_gzip_info2
CustomLog /var/log/mod_gzip.log common_with_mod_gzip_info2
mod_gzip_add_header_count Yes
mod_gzip_send_vary Yes
</ifModule>
lalu save httpd.conf anda dan buat apache agar bisa  dijalankan setiap kali reboot
tambahkan ini pada rc.conf Anda
apache_enable="YES"
indofreebsd# /usr/local/etc/rc.d/apache.sh start
Starting apache.
Silahkan test mod_gzip anda dengan mengakses http://domainanda.com//mod_gzip_status atau dengan menggunakan web site atau software test mod_gzip seperti  http://whatsmyip.org/mod_gzip_test/
Demikian sekilas tentang mod_gzip semoga bermanfaat. 
salam,
Ogev Gustav

COMMENTS

Name

Application Support,19,database server,1,Desktop/XWindow,1,DNS Server,2,Email Server,3,Firewall,1,FTP Server,2,General,2,IPFilter,1,Kernel,2,Networking,8,Proxy Server,4,Security,6,Tips and Trick,5,Web Server,2,
ltr
item
IndoFreeBSD: Mod_gzip Sebagai HTTP Kompresor
Mod_gzip Sebagai HTTP Kompresor
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEix1GpHGohlPVS_8varkU0bJra0QBHGv3Ue8qGCvgofAZZHwgDTyVmtLfzw224nQfTfvljuT_ezzJpvNmU9GhBgVyGcay8ChLI2VJUbXmtGlhFNC59v9ZDaDsuFpwc-bO6__5YBCS-F5fKK/s1600/apache-gzip.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEix1GpHGohlPVS_8varkU0bJra0QBHGv3Ue8qGCvgofAZZHwgDTyVmtLfzw224nQfTfvljuT_ezzJpvNmU9GhBgVyGcay8ChLI2VJUbXmtGlhFNC59v9ZDaDsuFpwc-bO6__5YBCS-F5fKK/s72-c/apache-gzip.png
IndoFreeBSD
https://www.indofreebsd.or.id/2015/02/modgzip-sebagai-http-kompresor.html
https://www.indofreebsd.or.id/
http://www.indofreebsd.or.id/
http://www.indofreebsd.or.id/2015/02/modgzip-sebagai-http-kompresor.html
true
1901051463523757307
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content