웹마스터 팁

문서의 순서

1. gzip 모듈을 설정하는 방법
2. httpd conf 내용 ( 제가 사용하는 것입니다)
3. php 에서의 설정 내용 ( 제가 사용하는 것입니다)

------------------------------------------------

1.

Module Name: mod_gzip.c
Content handlers: mod_gzip_handler , application/x-httpd-cgi , cgi-script , *
Configuration Phase Participation: Create Directory Config, Merge Directory Configs, Create Server Config, Merge Server Configs
Request Phase Participation: Check Type
Module Directives:
mod_gzip_on - Yes=mod_gzip will handle requests. No=mod_gzip is disabled.
mod_gzip_add_header_count - Yes=Add header byte counts to Common Log Format output total(s).
mod_gzip_keep_workfiles - Yes=Keep any work files used. No=Automatically delete any work files used.
mod_gzip_dechunk - Yes=Allow removal of 'Transfer-encoding: chunked' when necessary.
mod_gzip_min_http - Minimum HTTP protocol value to support. 1000 = HTTP/1.0 1001 = HTTP/1.1
mod_gzip_minimum_file_size - Minimum size ( bytes ) of a file eligible for compression
mod_gzip_maximum_file_size - Maximum size ( bytes ) of a file eligible for compression
mod_gzip_maximum_inmem_size - Maximum size ( bytes ) to use for in-memory compression.
mod_gzip_temp_dir - The directory to use for work files and compression cache
mod_gzip_item_include - ARG1=[mime,handler,file,uri,reqheader,rspheader] ARG2=[Name of item to INCLUDE in list of things that should be compressed]
mod_gzip_item_exclude - ARG1=[mime,handler,file,uri,reqheader,rspheader] ARG2=[Name of item to EXCLUDE from list of things that should be compressed]
mod_gzip_command_version - User defined pickup string to use for mod_gzip version command.
mod_gzip_can_negotiate - Yes=Negotiate/send static compressed versions of files No=Do not negotiate.
mod_gzip_handle_methods - mod_gzip_handle_methods GET|POST [GET|POST]
mod_gzip_static_suffix - mod_gzip_static_suffix suffix
mod_gzip_send_vary - mod_gzip_send_vary on|off
mod_gzip_update_static - mod_gzip_update_static yes|no


2. httpd conf 의 내용 ( 제가 사용하는 것입니다)

<IfModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk yes
mod_gzip_min_http 1001
mod_gzip_minimum_file_size 300
mod_gzip_maximum_file_size 0
mod_gzip_maximum_inmem_size 1024000
mod_gzip_keep_workfiles No
mod_gzip_item_include file .jsp$
mod_gzip_item_include file .org$
mod_gzip_item_include file .shtml$
mod_gzip_item_include file .htm$
mod_gzip_item_include file .html$
mod_gzip_item_include file .php$
mod_gzip_item_include file .php3$
mod_gzip_item_include file .php4$
mod_gzip_item_include mime text/.*
mod_gzip_item_include mime text/.htm
mod_gzip_item_include mime text/htm$
mod_gzip_item_include mime text/.html
mod_gzip_item_include mime text/html$
mod_gzip_item_include mime text/.php
mod_gzip_item_include mime text/php$
mod_gzip_item_include mime text/.php3
mod_gzip_item_include mime text/php3$
mod_gzip_item_include mime text/.php4
mod_gzip_item_include mime text/php4$
mod_gzip_item_include handler perl-script$
mod_gzip_item_include handler server-status$
mod_gzip_item_include handler server-info$
mod_gzip_item_include mime httpd/unix-directory
mod_gzip_item_include mime application/x-httpd-php
mod_gzip_item_exclude file ".css$"
mod_gzip_item_exclude file ".js$"
mod_gzip_item_exclude mime image/.*
mod_gzip_item_exclude reqheader "User-agent: Mozilla/4.0[678]"
mod_gzip_temp_dir /ramdrv/ztemp  #이부분은 탬프를 지정하는 부분입니다 저는 램드라이브를 사용합니다
</IfModule>

3. php 설정에서 아래 부분을 그대로 적용하세요

output_buffering = 8192  ;이부분에 적용할 값을 모를 경우 1또는 On으로 하세요

output_handler =ob_gzhandler

zlib.output_compression = Off



마치면서.. 계속적인 논란이 있는 mod_gzip 의 효능/성능에 대해서는 직접 체감해보시기 바랍니다 wow입니다 :)
제목 글쓴이 날짜
리눅스 보안 : 기초적인 방화벽 : portsentry 설치하기 [2] 정인배 2002.11.29
cron을 이용한 자동 백업 받기 최종우 2002.12.02
cron과 rsync 그리고 replication 을 이용한 데이터 백업 [3] 최종우 2002.12.03
FTP 를 이용한 원격 백업 받기 [5] 최종우 2002.12.04
[계정삭제 스크립터] 편리님이 만드신 계정추가랑 연동됩니다. [4] file 김동현 2002.12.04
[FreeBSD] 자동으로 시간 맞추기.. [1] DeX™ 2002.12.04
계정 등록 스크립트 [8] 편리 2002.12.05
오래간만에 찾아뵙는군요^^ [2] Dopesoul 2002.12.08
Zend Optimizer Full Pass Setup [3] DukeEYS 2002.12.08
mod_gzip 적용시 php 인클루드를 실패해서 포기하신분 보세요 [2] DukeEYS 2002.12.08
apache2 + mod_jk 100번의 닭질 끝에 찾아가는 사이트 DukeEYS 2002.12.09
[FreeBSD] Proftp + MySQL 연동 설치하기 [2] file DeX™ 2002.12.09
레드햇(redhat)리눅스에서 rpm 관리 명령어 정인배 2002.12.09
srpms, alpha, i386 , i686 이 의미하는 것은? [1] Dopesoul 2002.12.12
누군가 우리서버를 공격하고 있을때 응급처치! [13] Dopesoul 2002.12.13
[re] 저의 최종의견 입니다. [5] Dopesoul 2002.12.17
SetEnvIf 와 SetEnvIfNocase 의 차이 [7] Dopesoul 2002.12.13
DeX 님의 시간 동기화 스크립트를 편하고 안정적으로 변경한 리눅스용! [4] Dopesoul 2002.12.13
리눅스 rpm 명령어 활용(1): MRTG 설치 정인배 2002.12.14
PHP 4.2.3 파워 설치 테크닉 (에러 0%에 도전) [2] 밍밍이 2002.12.17