本人从事 linux nginx mysql php 开发多年,联系v:luhuang2003 ,希望接触到更新的web开发软件,开此博客希望能把自己的经验和接触的东西与大家进行共享。
分类: web开发
2013-02-26 15:36:24
1、安装 php 参照之前博客文档:
http://blog.chinaunix.net/uid-28543558-id-3468003.html
2、安装 nginx 参照之前博客文档:
http://blog.chinaunix.net/uid-28543558-id-3499270.html
/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 目录下面。