CentOS下Lighttpd Web服务器安装与配置方法
程序员文章站
2022-06-06 11:21:43
os: centos release 5.5 lighttpd: 1.4.28 安装 sudo yum install lighttpd.i386 lighttpd-fas...
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
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
上一篇: pytorch学习笔记(一)
下一篇: Apache中301重定向的配置代码
推荐阅读
-
CentOS7 下nginx与PHP的安装与配置
-
Linux NFS服务器的安装与配置方法(图文详解)
-
centos的安装与配置,Linux下基本命令、权限控制,解压缩文件以及软件的安装与卸载
-
CentOS下编译安装nginx及配置缩略图插件的方法教程
-
CentOS服务器环境下MySQL主从同步配置方法
-
CentOS下编译、安装与配置nginx
-
Centos 7.3下SQL Server安装配置方法图文教程
-
阿里云服务器CentOS 6.3下快速安装部署 LAMP 、vsftpd 环境的方法
-
CentOS(Linux)下的apache服务器配置与管理方法分享
-
CentOS下Lighttpd Web服务器安装与配置方法