安装Lighttpd与PHP5和MySQL支持Debian Lenny
Lighttpd是一款安全,快速,符合标准的Web服务器,专为速度至关重要的环境而设计。 本教程将介绍如何在支持PHP5(通过FastCGI)和MySQL支持的Debian Lenny服务器上安装Lighttpd。
我不会保证这将为您工作!
1初步说明
在本教程中,我使用IP地址为192.168.0.100
的hostname server1.example.com
。 这些设置可能会有所不同,因此您必须在适当的情况下更换它们。
2安装MySQL 5.0
首先我们像这样安装MySQL 5.0:
aptitude install mysql-server mysql-client
您将被要求为MySQL root用户提供密码 - 此密码对用户root @ localhost
以及root@server1.example.com有效
,因此我们不必在以后手动指定MySQL根密码:
MySQL“root”用户的新密码:
< - yourrootsqlpassword
重复MySQL“root”用户的密码:
< - yourrootsqlpassword
3安装Lighttpd
Lighttpd可以作为Debian软件包使用,因此我们可以这样安装:
aptitude install lighttpd
现在直接浏览器到http://192.168.0.100
,你应该看到Lighttpd占位符页面:
Lighttpd的默认文档根目录是Debian上的/ var / www
,配置文件为/etc/lighttpd/lighttpd.conf
。 其他配置存储在/ etc / lighttpd / conf-available
目录中的文件中 - 可以使用lighttpd-enable-mod
命令启用这些配置,该命令从/ etc / lighttpd / conf-enabled
目录创建符号链接到适当的配置/ etc / lighttpd / conf-available中的文件
。 您可以使用lighttpd-disable-mod
命令禁用
配置。
4安装PHP5
我们可以通过FastCGI使PHP5在Lighttpd中工作。 幸运的是,Debian提供了一个支持FastCGI的PHP5软件包,我们安装如下:
aptitude install php5-cgi
5配置Lighttpd和PHP5
要在Lighttpd中启用PHP5,我们必须修改/etc/php5/cgi/php.ini
,并在文件末尾添加行cgi.fix_pathinfo = 1
:
vi /etc/php5/cgi/php.ini
[...] cgi.fix_pathinfo = 1 |
要启用fastcgi配置(存储在/etc/lighttpd/conf-available/10-fastcgi.conf中
),请运行以下命令:
lighttpd-enable-mod fastcgi
这将创建一个符号链接/etc/lighttpd/conf-enabled/10-fastcgi.conf
,它指向/etc/lighttpd/conf-available/10-fastcgi.conf
:
ls -l /etc/lighttpd/conf-enabled
server1:/usr/bin# ls -l /etc/lighttpd/conf-enabled
total 0
lrwxrwxrwx 1 root root 44 2009-03-19 15:16 10-fastcgi.conf -> /etc/lighttpd/conf-available/10-fastcgi.conf
server1:/usr/bin#
然后我们重新加载Lighttpd:
/etc/init.d/lighttpd force-reload