Apache는 log_config_module을 사용하여 클라이언트의 요청을 원하는 형식으로 로그에 기록할 수 있습니다 아래 설정은 Apache 기본 로그 설정입니다. 한줄씩 의미를 확인해 보겠습니다. #1 #2 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined #3 LogFormat "%h %l %u %t \"%r\" %>s %b" common #4 #5 CustomLog "logs/access_log" combined #6 #1 #6 : IfModule 지서어는 서버에 log_config_module이 설치되어 있을 때만 섹션 안의 지시어들을 적용한다. [root@linux-2 conf]# httpd -D..