Lighttpd mod_accesslog不loggingfastcgi请求

我最近安装了一个lighttpd,通过mod_fastcgi为python脚本提供服务。 一切工作正常,但我没有得到mod_fastcgi处理access.log文件中logging的请求(端口80上的请求被logging,虽然)。 我的lighttpd版本在Debian 6.0上是1.4.28。 我用相同的工作configurationUbuntu的服务器10.04与lighttpd 1.4.26,它的工作。

这是我的configuration

lighttpd.conf

server.modules = ( "mod_access", "mod_alias", "mod_accesslog", "mod_compress", ) server.document-root = "/var/www/" server.upload-dirs = ( "/var/cache/lighttpd/uploads" ) server.errorlog = "/home/log/lighttpd/error.log" index-file.names = ( "index.php", "index.html", "index.htm", "default.htm", "index.lighttpd.html" ) accesslog.filename = "/home/log/lighttpd/access.log" url.access-deny = ( "~", ".inc" ) static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" ) server.pid-file = "/var/run/lighttpd.pid" include_shell "/usr/share/lighttpd/create-mime.assign.pl" include_shell "/usr/share/lighttpd/include-conf-enabled.pl" 

启用CONF-/ 10 fastcgi.conf

 server.modules += ( "mod_fastcgi" ) fastcgi.server = ( "/" => ( ( "min-procs" => 1, "check-local" => "disable", "host" => "127.0.0.1", # local "port" => 3000 ), ) ) 

任何想法 ?