本文是一篇关于在 dapper (译者注:其它版本基本适用) 安装和设置 lighttpd 与 php 的指南。 Lighttpd 或 "lighty" 是一个资源消耗非常小的 web 服务器。
需要技能:
打开终端
创建文件
编辑配置文件
安装需要的包:(这里可能没有包含没有的包,但是这两个包会自动下载其他相关的依赖包)
sudo apt-get install lighttpd php5
编辑配置文件 /etc/lighttpd/lighttpd.conf 删除下面一行的 # :
#include "mod_fastcgi.conf"
现在添加文件 /etc/lighttpd/mod_fastcgi.conf
server.modules += ("mod_fastcgi")
fastcgi.server == ( ".php" ==>
( "localhost" =>
(
"host" => "127.0.0.1",
"port" => 1026,
"bin-path" => "/usr/bin/php-cgi"
)
)
)
时间: 2024-10-29 12:37:27