知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

CentOS下Lighttpd Web服务器安装与配置

发布时间:2014-09-05 17:18:48作者:知识屋

OS: CentOS release 5.5
Lighttpd: 1.4.28

安装

sudo yum install lighttpd.i386 lighttpd-fastcgi.i386 lighttpd-mod_mysql_vhost.i386

运行
检查配置文件

lighttpd -t -f lighttpd.conf


启动lighttpd服务

lighttpd -D -f lighttpd.conf

 

结束lighttpd服务

CTRL+C

或者使用Linux的系统服务启动停止lighttpd服务

/etc/init.d/lighttpd start/stop/restart

测试

在/srv/www/lighttpd目录下创建一个文件index.html,内容如下:

Hello Lighttpd!

然后访问:http://localhost/index.html

配置php支持

编辑/etc/lighttpd/modules.conf文件,将其中以下行前面的注释删除

include "conf.d/fastcgi.conf"

编辑/etc/lighttpd/conf.d/fastcgi.conf文件,添加以下行

fastcgi.server = ( ".php" =>
( "localhost" =>
(
"socket" => "/tmp/php-fastcgi.socket",
"bin-path" => "/usr/bin/php-cgi"
)
)
)

在/srv/www/lighttpd目录下创建一个文件test.php,内容如下:

<?
phpinfo();
?>


然后访问:http://localhost/test.php

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜