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

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

扫码添加渲大师小管家,免费领取渲染插件、素材、模型、教程合集大礼包!

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

分享到 :
相关推荐

怎么解决香港windows服务器的突发状况(香港服务器容易被攻击吗)

解决香港windows服务器突发状况的方法:1。终端协议错误。用管理员用户登录香港服...

中小企业租用美国服务器的攻略(如何租用美国服务器)

为了更好的开展网络营销工作。很多中小型企业都会建立自己的网站。其中。美国服务器是中小...

租用俄罗斯服务器要注意哪些问题(租用俄罗斯服务器要注意哪些问题呢)

租用俄罗斯服务器要注意的问题有:1。注意俄罗斯服务器交付使用的时间。一般是在付款后1...

云服务器对端口有哪些安全措施(云服务器对端口有哪些安全措施要求)

云服务器对端口安全措施有:1.端口敲门。通过端口敲击顺序开启指定端口;2.DenyH...

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注