Simple Web Server menggunakan lighttpd dan php.
Langkah-langkah nya :
1. install lighttpd sebagai web server
urpmi lighttpd
2. install php dengan modul fcgi
urpmi php-fcgi
3. edit file /etc/lighttpd/lighttpd.conf, hilangkan tanda '#' di
"mod_fastcgi"
dan edit bagian ini :
fastcgi.server = ( ".php" =>
( "localhost" =>
(
"socket" => "/var/run/lighttpd/php-fastcgi.socket",
"bin-path" => "/usr/bin/php-fcgi"
)
)
)
4. buat direktori /var/run/lighttpd/ dan set owner dan grup nya ke user apache :
mkdir /var/run/lighttpd
chown -R apache:apache /var/run/lighttpd
5. Jalankan lighttpd nya
/etc/init.d/lighttpd start
or
service lighttpd start
No comments:
Post a Comment