티스토리 뷰
access.log를 보면 이미지부터 js, css 모두 출력해주는 것을 볼 수 있다.
그런 파일들이 필요한 사람들도 있겠지만.. 나는 필요 없다.
httpd.conf의 IfModule log_config_module부분을 살펴보면 access_log에 출력할 확장자를 필터 할 수 있는 기능이 있다.
분홍색 음영부분이 설정된 부분이다.
<IfModule log_config_module> <IfModule logio_module> # SetEnvIf Request_URI \.gif img-nosave CustomLog "|/usr/local/apache/bin/rotatelogs /usr/local/apache/logs/access.log.%Y%m%d 86400" combined env=!img-nosave # |
<IfModule log_config_module>
#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#
#LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
#
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here. Contrariwise, if you *do*
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and *not* in this file.
#
# CustomLog "logs/access.log" common
SetEnvIf Request_URI \.gif img-nosave
SetEnvIf Request_URI \.jpg img-nosave
SetEnvIf Request_URI \.png img-nosave
SetEnvIf Request_URI \.css img-nosave
SetEnvIf Request_URI \.js img-nosave
CustomLog "|/usr/local/apache/bin/rotatelogs /usr/local/apache/logs/access.log.%Y%m%d 86400" combined env=!img-nosave
#
# If you prefer a logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#
#CustomLog "logs/access.log" combined
</IfModule>
'Programing' 카테고리의 다른 글
JSP로 엑셀(Excel) 다운로드 파일만들기(한글깨짐,숫자포함) (0) | 2013.06.14 |
---|---|
[JAVASRIPT]팝업창 닫고 새로운 창 열기 (0) | 2013.05.23 |
IE 호환성 보기 버튼 없애기 (0) | 2013.01.09 |
[HTML]테이블이 긴글로 깨질때 (0) | 2012.11.01 |
HTML 특수문자 기호표 (0) | 2012.07.26 |
- Total
- Today
- Yesterday
- IP
- select
- apache
- Oracle
- 서버
- mssql
- 백업
- DB
- 오라클
- sql
- java
- Windows
- Shell
- DATABASE
- table
- eclipse
- server
- 파일
- tomcat
- 설정
- 자동차
- Toad
- 리눅스
- 데이터
- MySQL
- 윈도우
- delete
- 테이블
- user
- Linux
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |