----------------------------------------- 답변자가 기본적으로 참고할 내용입니다. - 배포판(옵션) : redhat7.3 - 커널버전(옵션) : 2.4.20 - 데몬버전(예:apache 1.3.27) : 1.3.27 - 데몬설치유형(RPM/컴파일/기타) : 컴파일 ----------------------------------------- 매번 감사드린다는 말씀 드리면서... 현재 아파치 conf 중.... <VirtualHost 11.111.111.111> ServerAdmin webmaster@abc.com DocumentRoot /usr/local/apache/htdocs ServerName abc.com ErrorLog /usr/local/apache/logs/error_log CustomLog /usr/local/apache/logs/access_log common </VirtualHost> NameVirtualHost 11.111.111.111 <VirtualHost 11.111.111.111> DocumentRoot /home/usrid/www ServerName usrid.abc.com ThrottlePolicy Volume 1500M 1d CustomLog /usr/local/apache/logs/usrid.abc.com_log common </Virtualhost> 이런식으로 가상호스트를 설정하고 있습니다.. (물론 개별도메인도 하고 있구요...) 그리구...conf 중..로그부분.. ErrorLog /usr/local/apache/logs/error_log LogLevel warn LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common LogFormat "%{Referer}i -> %U" referer LogFormat "%{User-agent}i" agent CustomLog /usr/local/apache/logs/access_log common #CustomLog /usr/local/apache/logs/referer_log referer #CustomLog /usr/local/apache/logs/agent_log agent #CustomLog /usr/local/apache/logs/access_log combined 이렇게 되어있구요.. 즉...산이님 답변의 말씀 대로라면.. 위의 선언과는 상관없이... LogFormat "%h %t (%T) \"%r\" %>s %b" stime SetEnvIfNoCase Request_URI "\.(php3|php|html|htm|cgi|pl|shtml)$" check_stime CustomLog /usr/local/apache/logs/stime_log combined env=check_stime 이렇게 선언해주고.. <VirtualHost 11.111.111.111> ServerAdmin webmaster@abc.com DocumentRoot /usr/local/apache/htdocs ServerName abc.com ErrorLog /usr/local/apache/logs/error_log CustomLog /usr/local/apache/logs/stime_log combined </VirtualHost> 이런시으로 하시란 말씀인가요... 아니면.. /usr/local/apache/logs/ 아래에...stime_log라는 빈 파일만 만들고.. LogFormat "%h %t (%T) \"%r\" %>s %b" stime SetEnvIfNoCase Request_URI "\.(php3|php|html|htm|cgi|pl|shtml)$" check_stime CustomLog /usr/local/apache/logs/stime_log combined env=check_stime 이부분만 선언해 주면 된단말씀인가요...? 어이없는 질문 죄송합니다..