ubuntu 安装php7.1

一、更新ubuntu系统
sudo apt-get update
二、安装php
add-apt-repository ppa:ondrej/php 添加php源
apt-get update
apt-get install php7.1-fpm 安装php-fpm
三、安装nginx
四、配置
编辑 vim /etc/nginx/sites-available/defaultphp

取消"location ~ .php"的注释,以下三行对应修改

root /www;
fastcgi_pass unix:/run/php/php7.1-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
五、重启nginx
sudo service nginx restartnginx

相关文章
相关标签/搜索