首页 > 代码库 > 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 环境
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。