Lighttpd 및 fastcgi가 활성화 된 Centos 5 시스템이 있습니다. 액세스는 기록하지만 오류는 기록하지 않습니다. 내부 서버 오류 500이 있고 로그에 정보가 없으며 존재하지 않는 파일도 열려고하면 오류 로그에 정보가 없습니다. 올바르게 활성화하는 방법은 무엇입니까?
아래는 내가 활성화 한 모듈 목록입니다.
server.modules = (
"mod_rewrite",
"mod_redirect",
"mod_alias",
# "mod_access",
# "mod_cml",
# "mod_trigger_b4_dl",
# "mod_auth",
"mod_status",
"mod_setenv",
"mod_fastcgi",
# "mod_webdav",
# "mod_proxy_core",
# "mod_proxy_backend_fastcgi",
# "mod_proxy_backend_scgi",
# "mod_proxy_backend_ajp13",
# "mod_simple_vhost",
# "mod_evhost",
# "mod_userdir",
# "mod_cgi",
# "mod_compress",
# "mod_ssi",
# "mod_usertrack",
# "mod_expire",
# "mod_secdownload",
# "mod_rrdtool",
"mod_accesslog" )
디버깅 설정은 다음과 같습니다.
## enable debugging
#debug.log-request-header = "enable"
#debug.log-response-header = "enable"
#debug.log-request-handling = "enable"
debug.log-file-not-found = "enable"
#debug.log-condition-handling = "enable"
오류 및 액세스 로그 경로 설정 :
## where to send error-messages to
server.errorlog = "/home/lxadmin/httpd/lighttpd/error.log"
#### accesslog module
accesslog.filename = "/home/lxadmin/httpd/lighttpd/ligh.log"
fastcgi 설정 :
fastcgi.debug = 1
fastcgi.server = ( ".php" => ((
"bin-path" => "/usr/bin/php-cgi",
"socket" => "/tmp/php.socket",
"max-procs" => 12,
"bin-environment" => (
"PHP_FCGI_CHILDREN" => "2",
"PHP_FCGI_MAX_REQUESTS" => "500"
)
)))
그리고 포함 된 구성 파일에는 다음이 있습니다.
server.errorlog = "/home/httpd/mywebsite.com/stats/mywebsite.com-error_log"
로그 파일에는 무엇이 있습니까?
/home/httpd/mywebsite.com/stats/
-rw-r--r-- 1 apache apache 5173239 May 16 11:34 mywebsite.com-custom_log
-rwxrwxrwx 1 root root 0 Mar 27 2009 mywebsite.com-error_log
/home/lxadmin/httpd/lighttpd/
-rwxrwxrwx 1 apache apache 2184 Apr 22 22:59 error.log
-rwxrwxrwx 1 apache apache 6088621 May 16 11:26 ligh.log
문제가 있는지 확인하기 위해 chmod 777 오류 로그를 제공했지만 실제로는 그렇지 않습니다.
그래서 내 질문은 : 오류 로그를 활성화하려면 어떻게해야합니까?