想学习在linux下建一个服务平台。
安装lighttpd
1.下载安装
到http://www.lighttpd.net/下载,lighttpd-1.4.19.tar.gz
$ wget http://www.lighttpd.net/download/lighttpd-1.4.19.tar.gz
$ gzip -cd lighttpd-1.4.19.tar.gz | tar xf -
$ cd lighttpd-1.4.19
$ ./configure --prefix=/usr/local/lighttpd-1.4.19
$ make
$ make install
2.copy conf
cp doc/lighttpd.conf /usr/local/lighttpd-1.4.19/
3.配置
lighttpd.conf里server.document-root是服务目录、server.errorlog是错误日志目录,自己更改。
4.运行
$ cd /usr/local/lighttpd-1.4.19
$ sbin/lighttpd -f lighttpd.conf
呵呵,现在可以运行了。
posted on 2008-04-30 23:23
流浪汗 阅读(1327)
评论(2) 编辑 收藏 所属分类:
Linux