1   . 安装php7     
下载地址:https://secure.php.net/downloads.php
这里下载的是:wget http://ar2.php.net/distributions/php-7.0.6.tar.gz
下载之后解压并进入在解压文件中
安装:./configure  -enable-fpm --with-pdo-mysql --with-mysql --with-mysqli --with-curl --with-openssl --enable-mbstring(enable-fpm参数即可开启PHP-FPM)  ->  make && make install
(PHP在 5.3.3 之后已经讲php-fpm写入php源码核心了)

2  . nginx整合php-fpm

. 启动php-fpm: /usr/local/sbin/php-fpm

报错
[18-May-2016 18:07:58] ERROR: failed to open configuration file '/usr/local/etc/php-fpm.conf': No such file or directory (2)
[18-May-2016 18:07:58] ERROR: failed to load configuration file '/usr/local/etc/php-fpm.conf'
[18-May-2016 18:07:58] ERROR: FPM initialization failed

到/usr/local/etc/目录下,将php-fpm.conf.default拷贝一份成php-fpm.conf

3 . 安装nginx

Nginx 一般有两个版本,分别是稳定版和开发版,您可以根据您的目的来选择这两个版本的其中一个,下面是把 Nginx 安装到 /usr/local目录下的详细步骤:

wget http://nginx.org/download/nginx-1.4.2.tar.gz

tar -zxvf nginx-1.4.2.tar.gz

cd nginx-1.4.2

./configure

make

make install

4 THINK3.2.3 的配置

修改nginx的配置文件

#user  nobody;
worker_processes ; #error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info; #pid logs/nginx.pid; events {
worker_connections ;
} http {
include mime.types;
default_type application/octet-stream; #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; sendfile on;
#tcp_nopush on; #keepalive_timeout ;
keepalive_timeout ; #gzip on; server {
listen ;
server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / {
root html;
index index.html index.htm index.php;
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$ last;
break;
}
} error_page /.html;
location = /.html {
return 'Sorry, File not Found!';
}
# redirect server error pages to the static page /50x.html
#
error_page /50x.html;
location = /50x.html {
root html;
} # proxy the PHP scripts to Apache listening on 127.0.0.1:
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:
# location ~ \.php/?.*$ {
root html;
fastcgi_pass 127.0.0.1:;
fastcgi_index index.php;
include fastcgi_params;
set $fastcgi_script_name2 $fastcgi_script_name;
if ($fastcgi_script_name ~ "^(.+\.php)(/.+)$") {
set $fastcgi_script_name2 $;
set $path_info $;
}
fastcgi_param PATH_INFO $path_info;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name2;
fastcgi_param SCRIPT_NAME $fastcgi_script_name2;
} # deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
} # another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen ;
# listen somename:;
# server_name somename alias another.alias; # location / {
# root html;
# index index.html index.htm;
# }
#} # HTTPS server
#
#server {
# listen ssl;
# server_name localhost; # ssl_certificate cert.pem;
# ssl_certificate_key cert.key; # ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m; # ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on; # location / {
# root html;
# index index.html index.htm;
# }
#} }

最新文章

  1. centos7 编译php56
  2. 深入学习jQuery节点操作
  3. HTTP动词
  4. [MaxOSX] 路由操作
  5. HDU 5025
  6. android studio sqlite操作代码片段
  7. TCP/IP协议原理与应用笔记23:路由选择模块 和 路由表的设计
  8. Project Euler 77:Prime summations
  9. TaskTracker获取并执行map或reduce任务的过程(一)
  10. 怎样在Java中实现基本数据类型与字符之间的转换
  11. Node.js中url的详解
  12. WifiDog and OpenWrt
  13. windows平台调用函数堆栈的追踪方法
  14. [国嵌攻略][153][I2C裸机驱动设计]
  15. java 多线程(总结)
  16. 深入理解JVM(七)——性能监控工具
  17. Podfile
  18. Javascript高级编程学习笔记(81)—— 富文本(1)
  19. luogu 1772 物流运输 ZJOI2006 spfa+dp
  20. sockaddr_in 与 in_addr的区别

热门文章

  1. linux目录管理、时钟管理、文件查看命令
  2. DevExpress DateEdit 5 常见问题解决方法
  3. Spring Data操作Redis时,发现key值出现 \xac\xed\x00\x05t\x00\tb
  4. css怎么让li水平排列和div居中
  5. 【opencv基础】detectmultiscale函数详解
  6. 【计算机视觉】交并比IOU概念理解
  7. [LeetCode&Python] Problem 806. Number of Lines To Write String
  8. CF1083(div1)
  9. 常用sql语法初级
  10. unknown error: call function result missing 'value'