免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1189 | 回复: 0
打印 上一主题 下一主题

Ubuntu Nginx PHP FastCGI [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-12-06 18:41 |只看该作者 |倒序浏览
1. 获取root权限

sudo su -
2. 安装MySQL
aptitude install mysql-server mysql-client
3. 安装Nginx
aptitude install nginx
   启动Nginx

/etc/init.d/nginx start
4. 安装PHP
aptitude install php5-cgi php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-mhash php5-ming php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl
   编辑PHP配置文件
vi /etc/php5/cgi/php.ini
[...]
cgi.fix_pathinfo = 1
5. 为了得到spawn-fcgi我们需要安装lighttpd
aptitude install lighttpd
   将lighttpd从启动项删除
update-rc.d -f lighttpd remove
   新建php-fastcgi

vim /usr/bin/php-fastcgi
#!/bin/sh
/usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -u www-data -f /usr/bin/php5-cgi
   创建init脚本
vim /etc/init.d/php-fastcgi
   脚本内容
#!/bin/bash
PHP_SCRIPT=/usr/bin/php-fastcgi
RETVAL=0
case "$1" in
    start)
      $PHP_SCRIPT
      RETVAL=$?
  ;;
    stop)
      killall -9 php5-cgi
      RETVAL=$?
  ;;
    restart)
      killall -9 php5-cgi
      $PHP_SCRIPT
      RETVAL=$?
  ;;
    *)
      echo "Usage: php-fastcgi {start|stop|restart}"
      exit 1
  ;;
esac
exit $RETVAL

   修改权限

chmod 755 /etc/init.d/php-fastcgi
   启动脚本
/etc/init.d/php-fastcgi start
   添加到启动项
update-rc.d php-fastcgi defaults
6. 修改Nginx配置文件
vim /etc/nginx/nginx.conf
[...]
worker_processes 5;
[...]
keepalive_timeout 2;
[...]
vim /etc/nginx/sites-available/default
[...]
server {
        listen 80;
        server_name _;
        access_log /var/log/nginx/localhost.access.log;
        location / {
                root /var/www/nginx-default;
                index index.php index.html index.htm;
        }
        location /doc {
                root /usr/share;
                autoindex on;
                allow 127.0.0.1;
                deny all;
        }
        location /images {
                root /usr/share;
                autoindex on;
        }
        #error_page 404 /404.html;
        # redirect server error pages to the static page /50x.html
        #
        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
                root /var/www/nginx-default;
        }
        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
                #proxy_pass http://127.0.0.1;
        #}
        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
                fastcgi_pass 127.0.0.1:9000;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME /var/www/nginx-default$fastcgi_script_name;
                include fastcgi_params;
        }
        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        location ~ /\.ht {
                deny all;
        }
}
[...]
   重启Nginx
/etc/init.d/nginx restart
7. 新建phpinfo.php用于测试
vim /var/www/nginx-default/phpinfo.php
?php
// Show all information, defaults to INFO_ALL
phpinfo();
// Show just the module information.
// phpinfo(8) yields identical results.
phpinfo(INFO_MODULES);
?>


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/107440/showart_2112325.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP