Ubuntu 8.04如何利用fast-cgi来搭建Apache2+PHP5环境
在Ubuntu 8.04上搭建Apache2+PHP5环境,可以利用FastCGI来实现。首先,需要安装Apache2和PHP5,并且要安装FastCGI模块。
1.安装Apache2:
在Ubuntu 8.04上安装Apache2,需要使用apt-get命令:
sudo apt-get install apache2
安装完成后,需要启动Apache2:
sudo /etc/init.d/apache2 start
2.安装PHP5:
在Ubuntu 8.04上安装PHP5,需要使用apt-get命令:
sudo apt-get install php5
安装完成后,需要重启Apache2:
sudo /etc/init.d/apache2 restart
3.安装FastCGI模块:
在Ubuntu 8.04上安装FastCGI模块,需要使用apt-get命令:
sudo apt-get install libapache2-mod-fastcgi
安装完成后,需要重启Apache2:
sudo /etc/init.d/apache2 restart
4.配置FastCGI:
在Ubuntu 8.04上配置FastCGI,需要编辑Apache2的配置文件:
sudo vim /etc/apache2/conf.d/fastcgi.conf
在fastcgi.conf文件中添加以下内容:
<IfModule mod_fastcgi.c> AddHandler php5-fcgi .php Action php5-fcgi /php5-fcgi Alias /php5-fcgi /usr/lib/cgi-bin/php5-fcgi FastCgiExternalServer /usr/lib/cgi-bin/php5-fcgi -socket /var/run/php5-fpm.sock -pass-header Authorization </IfModule>
保存文件后,需要重启Apache2:
sudo /etc/init.d/apache2 restart
5.测试:
在Ubuntu 8.04上测试FastCGI,需要创建一个PHP文件:
sudo vim /var/www/test.php
在test.php文件中添加以下内容:
<?php phpinfo(); ?>
保存文件后,可以通过浏览器访问:
http://localhost/test.php
如果能够正常显示PHP信息,则表明FastCGI已经配置成功。
以上就是在Ubuntu 8.04上搭建Apache2+PHP5环境,利用FastCGI来实现的步骤,通过这些步骤,可以轻松实现Apache2+PHP5的搭建。
相关文章