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

相關文章
相關標籤/搜索