CentOS5.2下安装lighttpd

wget http://www.lighttpd.net/download/lighttpd-1.4.19.tar.gz
tar zxvf lighttpd*
cd lightt*
./configure

这时候说缺少pcre-devel

yum install pcre-devel
./configure --with-pcre
make
make install

在ubuntu下用apt-get install lighttpd来安装,方便了很多,但是在centOS下就要自己配置了.

cp doc/sysconfig.lighttpd /etc/sysconfig/lighttpd
mkdir /etc/lighttpd

然后copy默认的配置文件

cp doc/lighttpd.conf /etc/lighttpd/lighttpd.conf
cp doc/rc.lighttpd.redhat /etc/init.d/lighttpd

然后用whereis lighttpd找到位置在/usr/local/sbin/lighttpd

在用vim /etc/init.d/lighttpd,找到prog="lighttpd"节,注释掉默认的,添加:

lighttpd="/usr/local/sbin/lighttpd"

在/var/log/下mkdir lighttpd,再创建两个文件access.log和error.log

默认的网站目录配置是:

server.document-root        = "/srv/www/htdocs/"

done :)

配置反向代理:http://www.coolcode.cn/?action=tags&item=Linux

-----------------------

看了一下access.log突然发现一个有趣的东东:

192.168.1.100 192.168.1.106 - [14/Jul/2008:19:29:43 +0800] "GET / HTTP/1.1" 304
0 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .N
ET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.5.30428; Zune 2.5)"

Zune 2.5也在Request head里呀...一直都没注意这个.

posted @ 2008-07-14 12:15  new 维生素C.net()  阅读(350)  评论(0编辑  收藏  举报