| Install Lighttpd n PHP di Debian 5 (Lenny) |
|
Nganggur.. Iseng² googling cari tutorial install lighttpd + php. apt-get install lighttpd php5-cgi Setelah itu edit config file /etc/lighttpd/lighttpd.conf Sekarang buat file baru /etc/lighttpd/mod_fastcgi.conf yang berisikan : server.modules += ("mod_fastcgi")
fastcgi.server = ( ".php" =>
( "localhost" =>
(
"bin-path" => "/usr/bin/php5-cgi",
"socket" => "/tmp/php.socket"
)
)
)
Kalo udah semua tinggal reload atau restart lighttpd Selesai ^_^ |