作者:tonyvicky
来自:LinuxSir.Org
摘要:lighttpd是一个轻量级的WEB服务器软件,支持CGI FASTCGI等
本文重点介绍lighttpd的CGI和FASTCGI模块的使用;
目录
一、关于测试环境
二、下载相关软件
三、安装和配置
1、安装lighttpd
2、配置lighttpd
3、设置CGI
4、设置FASTCGI
5、压力测试
四、关于本文
+-------------------------------------------+
| 正文 |
+-------------------------------------------+
一、关于测试环境
Ubuntu 5.10 , gcc4.0.2 , php5.1.1 , lighttpd 1.4.10
如果要测试FASTCGI在编译PHP时需要打开fastcgi的选项( --enable-fastcgi)
二、下载相关软件
lighttpd http://www.lighttpd.net/download/
php http://www.php.net
三、安装和配置
1、安装lighttpd
root@tonyvicky:# tar vxzf lighttpd-1.4.10.tar.gz
root@tonyvicky:# cd lighttpd-1.4.10
root@tonyvicky:# ./configure --prefix=/usr/local/lighttpd
root@tonyvicky:# make
root@tonyvicky:# make install
root@tonyvicky:# mkdir /usr/local/lighttpd/htdocs
root@tonyvicky:# mkdir /usr/local/lighttpd/etc
root@tonyvicky:# cp ./doc/lighttpd.conf /usr/local/lighttpd/etc/
转载自原文链接, 如需删除请联系管理员。
原文链接:Web服务器 之 lighttpd 轻量级WEB服务器,转载请注明来源!
相关推荐