首页 > 代码库 > ubuntu16.04下 搭建 lnmp 环境

ubuntu16.04下 搭建 lnmp 环境

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 环境