lighttpd服务器 v1.4.42 官方版
847KB / 网络其它
lighttpd服务器是一款开源的轻量级web服务器。lighttpd服务器是仅需少量的内存及CPU资源即可达到同类网页服务器的性能。Lighttpd是众多OpenSource轻量级的web server中较为优秀的一个。支持FastCGI,CGI,Auth,输出压缩(output compress),URL重写,Alias等重要功能。
lighttpd服务器安装说明:
1. 下载最新版本
2. 解压、安装、配置
shell> tar zxvf lighttpd-1.4.12.tar.gz
shell> cd lighttpd-1.4.12
shell> ./configure –prefix=/usr/local/lighttpd
shell> ./make
shell> ./make install
shell> cp doc/rc.lighttpd.redhat /etc/rc.d/init.d/lighttpd
shell> cp doc/sysconfig.lighttpd /etc/sysconfig/lighttpd
shell> mkdir /etc/lighttpdshell> cp doc/lighttpd.conf /etc/lighttpd/lighttpd.conf
shell> chkconfig lighttpd on
接下来打开/etc/rc.d/init.d/lighttpd修改lighttpd的值如下lighttpd=”/usr/local/lighttpd/sbin/lighttpd”
打开/etc/lighttpd/lighttpd.conf修改服务的端口,以及文档根目录的路径后启动lighttpd服务
shell> service lighttpd start
更多关于lighttpd的配置请看lighttpd的文档
附注在lighttpd中可以通过下面的配置来实现每天一个访问日志文件:
accesslog.filename = “| /usr/local/lighttpd/bin/rotatelogs /usr/local/lighttpd/logs/access_%Y%m%d.log 86400″
其中rotatelogs直接从apache的bin目录拷贝过来即可。
配置日志记录格式:
accesslog.format = "%h %l %u %t "%r" 200 %b "%{Referer}i" "%{User-Agent}i""
lighttpd服务器 v1.4.37 更新说明:
1.4.37包含1.4.36,回归修正和cmake,SCons和FreeBSD(也许其他的BSD)相关的修正。静态生成(现在只提高了SCons)。mod_cgi mmap处理进行了改进,同时网络后台处理SIGBUS mmap(SIGBUS是如果文件变小而阅读;还有其他一些地方可能触发)。
内部接口再次发生改变,所以请小心使用第三方插件。
我们的jenkins实例的测试套件现在也运行scons(包括静态和fullstatic建立)和FreeBSD,希望防止回归特别是在将来的版本中有一种与1.4.36 FreeBSD。