码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu16.04下 搭建 lnmp 环境

时间:2017-02-25 18:43:04      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:dex   etc   enable   sock   nginx配置文件   with   cat   init   fpm   

apt-get install nginx 

apt-get install php7.0    php7.0-mysql 

apt-get install mysql 

编辑nginx配置文件

vim /etc/nginx/sites-enabled/default

在server段 中添加:

location ~ \.php$ {
    root /var/www/html;

    fastcgi_index index.php;

    # With php7.0-cgi alone:
    #fastcgi_pass 127.0.0.1:8227;
    这个地方有两种方式传递给php处理,端口和sock方式,
    /etc/php/7.0/fpm/pool.d/www.conf 在这个文件里面可以看到默认的方式,我这里默认的sock方式,据测sock比端口方式更快
    # With php7.0-fpm:
    fastcgi_pass unix:/run/php/php7.0-fpm.sock;

    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
}

安装完php 默认就启动了 php-fpm,可以自己检查一下

/etc/init.d/nginx restart

如果你的项目中没有什么特别的nginx模块需求,这种方式也基本满足了

 

ubuntu16.04下 搭建 lnmp 环境

标签:dex   etc   enable   sock   nginx配置文件   with   cat   init   fpm   

原文地址:http://www.cnblogs.com/codeAB/p/6442222.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!