nginx php fastcgi fpm的部署-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 331551
  • 博文数量: 68
  • 博客积分: 405
  • 博客等级: 一等列兵
  • 技术积分: 1288
  • 用 户 组: 普通用户
  • 注册时间: 2013-01-09 15:39
个人简介

本人从事 linux nginx mysql php 开发多年,联系v:luhuang2003 ,希望接触到更新的web开发软件,开此博客希望能把自己的经验和接触的东西与大家进行共享。

文章分类

全部博文(68)

文章存档

2024年(1)

2013年(67)

我的朋友
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: web开发

2013-02-26 15:36:24


nginx
是一个高性能的 http 和 反向代理 服务器,也是一个 imap/pop3/smtp 代理服务器。 nginx 是由 igor sysoev 为俄罗斯访问量第二的 rambler.ru 站点开发的,它已经在该站点运行超过两年半了。 igor 将源代码以类 bsd 许可证的形式发布


1、安装 php 参照之前博客文档:

http://blog.chinaunix.net/uid-28543558-id-3468003.html


2、安装 nginx 参照之前博客文档:

http://blog.chinaunix.net/uid-28543558-id-3499270.html


3、启动 fpm

/usr/local/nginx_php/sbin/php-fpm


4、配置nginx.conf侦听9000端口

    在 server括号里面添加以下行

      location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  script_filename  你的网站目录$fastcgi_script_name;
        include        fastcgi_params;
        }

    

    events {

        # 使用的  网络i/o模型   linux 系统推荐 epoll    freebsd 系统推荐  kqueue

        use epoll

       # 允许的链接数

        worker_connections 51200

    }

在重启 nginx 就可以使用了。


代码路径默认在 nginx 安装目录下面的 html 目录下面。


阅读(1512) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图