操作
lighttpd 1.4.10¶
亲爱的 lighties,
lighttpd 的又一个版本发布了,这次更侧重于解决
错误而非添加新功能。
- CGI 应该能再次工作
- fastcgi 在高负载下不应导致崩溃
- fastcgi 中的负载均衡应按预期工作
- 损坏的摘要请求不应导致 mod_auth 崩溃
新内容
我们等了很久,现在我们有了
fastcgi.map-extensions = ( ".php3" => ".php" ) fastcgi.server = ( ".php" => ... )
... 并且我们现在有了 CWD 变量,可以将相对路径传递给配置
fastcgi.server = ( "dispatch.fcgi" => (( "bin-path" => CWD + "/public/dispatch.fcgi" )) )
... 并且我们有一个新选项
{{{
$ lighttpd -V
lighttpd-1.4.10 (ssl) - 一款轻量、快速的 Web 服务器
构建日期:2006 年 2 月 2 日 22:20:30
事件处理器
+ select (generic)
+ poll (Unix)
+ rt-signals (Linux 2.4+)
+ epoll (Linux 2.6)
- /dev/poll (Solaris)
- kqueue (FreeBSD)
网络处理器
+ sendfile
特性
+ IPv6 support
+ zlib support
+ bzip2 support
+ crypt support
- PAM support
+ SSL Support
+ PCRE support
+ mySQL support
+ LDAP support
+ memcached support
+ FAM support
+ LUA support
+ xml support
+ SQLite support
- GDBM support
}}}
变更¶
- 添加了 mod_dirlisting 的文档
- 在 mod_fastcgi 中添加了 fastcgi.map-extensions
- 修复了 mod_fastcgi 的负载均衡问题
- 修复了 mod_accesslog 中 syslog() 的额外换行符问题
- 修复了 mod_usertrack 中 IE 浏览器的用户跟踪 cookie 问题
- 修复了 mod_auth 中摘要处理的崩溃问题
- 修复了 mod_proxy 后端 301 响应体的处理问题
- 修复了在 server.modules 未设置时基础模块的加载问题
- 修复了在加载 mod_scgi 时 CGI 损坏的问题