Ubuntu下安装配置Lighttpd+PHP+SQLite +cgi

安装步骤
1、安装Lighttpd和PHP
sudo apt-get install lighttpd php5-cgi

2、启用FastCGI以及CGI模式

sudo lighty-enable-mod cgi

sudo lighty-enable-mod fastcgi
sudo lighty-enable-mod fastcgi-php
3、重启Lighttpd进程
sudo /etc/init.d/lighttpd force-reload

4、安装SQLite
sudo apt-get install sqlite3

5、安装PHP的SQLite模块
sudo apt-get install php5-sqlite


6、在lighttpd的根目录(/var/www)创建目录cgi-bin,将普通cgi程序放在该目录下,将php文件放在根目录(/var/www)下


FastCGI配置文件:

max-load-per-proc:在一个新的进程产生之前,平均每个进程可以等待的处理数量

max-procs:开始最大的进程数量

idle-timeout:在一个不可活动进程消亡前可以存活的时间

PHP_FCGI_CHILDREN:每个主进程下的子进程数

PHP_FCGI_MAX_REQUESTS:每个进程最大可处理的请求次数



你可能感兴趣的:(Ubuntu下安装配置Lighttpd+PHP+SQLite +cgi)