OS: CentOS release 5.5
Lighttpd: 1.4.28
安裝
sudo yum install lighttpd.i386 lighttpd-fastcgi.i386 lighttpd-mod_mysql_vhost.i386
運(yùn)行
檢查配置文件
lighttpd -t -f lighttpd.conf
啟動(dòng)lighttpd服務(wù)
lighttpd -D -f lighttpd.conf
結(jié)束lighttpd服務(wù)
CTRL+C
或者使用Linux的系統(tǒng)服務(wù)啟動(dòng)停止lighttpd服務(wù)
/etc/init.d/lighttpd start/stop/restart
測試
在/srv/www/lighttpd目錄下創(chuàng)建一個(gè)文件index.html,內(nèi)容如下:
Hello Lighttpd!
然后訪問:http://localhost/index.html
配置php支持
編輯/etc/lighttpd/modules.conf文件,將其中以下行前面的注釋刪除
include "conf.d/fastcgi.conf"
編輯/etc/lighttpd/conf.d/fastcgi.conf文件,添加以下行
復(fù)制代碼代碼如下:
fastcgi.server = ( ".php" =>
( "localhost" =>
(
"socket" => "/tmp/php-fastcgi.socket",
"bin-path" => "/usr/bin/php-cgi"
)
)
)
在/srv/www/lighttpd目錄下創(chuàng)建一個(gè)文件test.php,內(nèi)容如下:成都服務(wù)器托管
復(fù)制代碼代碼如下:
phpinfo();
?>
然后訪問:http://localhost/test.php