Skip to content
조회 수 1351 추천 수 0 댓글 1
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

아파치 모듈 mod_deflate 압축하기

 
gzip을 통한 신시간 압축 전송은 한정된 전송량을 알차게 쓰는 길이 되곤 한다.
압축하는 과정이 서버에게는 짐이지만, 전송할 내용이 줄어든 만큼 전송시간이 줄어들어
오히려 서버의 짐을 덜 수 있다.
 
 
 
httpd.conf의 전체 설정 또는 개별 가상 호스트(Virtual Host)나  .htaccess 파일의 적당한 곳에 다음과 같은 내용을 끼워 넣는다.
 
 
mod_deflate 모듈은 서버의 출력을 네트웍으로 클라이언트에 보내기 전에 압축하는 DEFLATE 출력필터를 제공한다.
 
 

일부 type만 압축

 

AddOutputFilterByType DEFLATE text/html text/plain text/xml 

 

 

 

 

이미지를 제외한 모든 것을 압축
 
<Location />
# 필터를 추가한다
SetOutputFilter DEFLATE
 
# Netscape 4.x에 문제가 있다...
BrowserMatch ^Mozilla/4 gzip-only-text/html
 
# Netscape 4.06-4.08에 더 문제가 있다
BrowserMatch ^Mozilla/4\.0[678] no-gzip
 
# MSIE은 Netscape라고 자신을 알리지만, 문제가 없다
# BrowserMatch \bMSIE !no-gzip !gzip-only-text/html          
 
# 주의: 아파치 2.0.48까지 mod_setenvif의 버그때문에
# 위의 정규표현식은 동작하지 않는다. 원하는 효과를
# 얻기위해 다음과 같이 수정하여 사용한다:
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
 
# 이미지를 압축하지 않는다
SetEnvIfNoCase Request_URI \
\.(?:gif|jpe?g|png)$ no-gzip dont-vary
 
# 프록시가 잘못된 내용을 전달하지않도록 한다
Header append Vary User-Agent env=!dont-vary

</Location> 

 

<IfModule mod_deflate.c>
AddType text/html .html .htm
AddType text/css  .css
AddType application/xml .xml
AddType application/javascript  .js
AddType application/x-httpd-php .php .php3 .html .htm .phtml .inc
AddType application/x-httpd-php-source .phps


AddOutputFilterByType DEFLATE text/plain text/html text/xml
AddOutputFilterByType DEFLATE application/xhtml+xml application/xml application/rss+xml
AddOutputFilterByType DEFLATE text/css application/javascript application/x-javascript
AddOutputFilterByType DEFLATE application/json
AddOutputFilterByType DEFLATE image/svg+xml
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/php
AddOutputFilterByType DEFLATE application/x-httpd-php
AddOutputFilterByType DEFLATE application/x-httpd-fastphp

DeflateCompressionLevel 9          #사용할 압축레벨을 선택, 값이 클수록 압축률이 증가하지만, CPU를 더 많이 사용함

 

BrowserMatch ^Mozilla/4 gzip-only-text/html                # Netscape 4.xx에는 HTML만 압축해서 보냄
BrowserMatch ^Mozilla/4\.0[678] no-gzip                   # Netscape 4.06~4.08에는 압축해서 보내지 않음
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html     # 자신을 Mozilla로 알리는 MSIE에는 그대로 압축해서 보냄


압축하지 않을 파일들을 지정

SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png|bmp|zip|tar|rar|alz|a00|ace|txt|mp3|mpe?g|wav|asf|wma|wmv|swf|exe|pdf|doc|xsl|hwp|java|c|t?gz|bz2|7z)$ no-gzip dont-vary

</ifModule> 
 
 
 
로그인 후 댓글쓰기가 가능합니다.

?
  • ?
    Progress 2016.03.17 11:45
    http://www.comcbt.com/xe/comtip/1923377

  1. 28
    Jul 2021
    12:55

    윈도우 10 절전모드(슬립모드) 예약해제 방법

    Category컴퓨터잡담 Views499
    Read More
  2. 05
    Mar 2016
    09:15

    PHP 가속기

    CategoryServer Views525
    Read More
  3. 10
    Dec 2015
    03:45

    서버 다운 원인

    Category컴퓨터잡담 Views558
    Read More
  4. 30
    Nov 2016
    05:32

    Server 성능 테스트

    CategoryServer Views585
    Read More
  5. 26
    Dec 2015
    01:37

    ACTIVE-X 의 무서움

    Category컴퓨터잡담 Views669
    Read More
  6. 23
    Jan 2016
    04:32

    Sitemap.xml 만들어 주는 사이트

    Category컴퓨터잡담 Views690
    Read More
  7. 24
    Jan 2015
    15:36

    크롬 속도올리기

    Category컴퓨터잡담 Views807
    Read More
  8. 13
    Nov 2015
    05:06

    박지성 맨유시절 호날두와의 호흡경기 모음(유니세프 친선경기)

    Category컴퓨터잡담 Views827
    Read More
  9. 13
    Nov 2015
    03:32

    도스 배치파일로 원격지 컴퓨터 모니터링

    Category컴퓨터잡담 Views833
    Read More
  10. 03
    Sep 2021
    08:37

    파이썬(python) 자주 사용하는 명령 모으기

    Category컴퓨터잡담 Views884
    Read More
  11. 31
    Aug 2021
    18:18

    python 문자열에서 모든 공백을 제거

    Category컴퓨터잡담 Views897
    Read More
  12. 02
    Sep 2021
    17:42

    아나콘다에서 모듈을 설치할 때에는?

    Category컴퓨터잡담 Views941
    Read More
  13. 02
    Sep 2021
    16:09

    파이썬 키움증권 open api 스크랩

    Category컴퓨터잡담 Views969
    Read More
  14. 01
    Dec 2015
    08:35

    PC에 안드로이드 설치하기

    Category컴퓨터잡담 Views989
    Read More
  15. 01
    Sep 2015
    08:59

    핑테스트 프로그램

    Category컴퓨터잡담 Views1043
    Read More
  16. 01
    Jun 2021
    09:48

    타지역 농지매입

    Category컴퓨터잡담 Views1108
    Read More
  17. 28
    Jul 2021
    09:10

    파이썬 변수값에서 숫자만 추출하기

    Category컴퓨터잡담 Views1141
    Read More
  18. 04
    Dec 2015
    23:33

    [안드로이드] 키캣 4.4 버전 플래시 동영상 안될때 해결방법

    Category컴퓨터잡담 Views1147
    Read More
  19. 03
    Mar 2015
    23:55

    php.ini 파일설정으로 파일업로드 용량늘리기

    CategoryServer Views1150
    Read More
  20. 13
    Jul 2015
    04:11

    XE ckeditor 모바일에서 사용하기

    CategoryServer Views1151
    Read More
Board Pagination Prev 1 2 3 4 5 ... 46 Next
/ 46

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소