Ubuntu安裝php7.1版本 laravel環境

weixin_34236869發表於2016-11-30

Ubuntu安裝php7.1版本 laravel環境

安裝PHP環境

sudo apt-get update
sudo apt-get install -y language-pack-en-base
locale-gen en_US.UTF-8

sudo apt-get install software-properties-common
sudo LC_ALL=en_US.UTF-8 add-apt-repository ppa:ondrej/php
sudo apt-get update

sudo apt-get -y install php7.1
sudo apt-get -y install php7.1-mysql
sudo apt-get install php7.1-fpm

apt-get install php7.1-curl php7.1-xml php7.1-mcrypt php7.1-json php7.1-gd php7.1-mbstring

sudo apt-get -y install nginx

sudo apt-get -y install mysql-server-5.6

配置PHP

sudo vim /etc/php/7.1/fpm/php.ini  // 將cgi.fix_pathinfo=1這一行去掉註釋,將1改為0

sudo vim /etc/php/7.1/fpm/pool.d/www.conf

// 配置這個 listen = /var/run/php7.1-fpm.sock

sudo service php7.1-fpm restart

sudo vim /etc/nginx/sites-available/default

配置Nginx

        listen 80 default_server;
        listen [::]:80 default_server ipv6only=on;

        root /var/www/laravel-ubuntu/public;
        index index.php index.html index.htm;

        # Make site accessible from http://localhost/
        server_name localhost;

        location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to displaying a 404.
                try_files $uri $uri/ /index.php?$query_string;
                # Uncomment to enable naxsi on this location
                # include /etc/nginx/naxsi.rules
        }
        location ~ \.php$ {
                try_files $uri /index.php =404;
                fastcgi_split_path_info ^(.+\.php)(/.+)$;
                fastcgi_pass unix:/var/run/php7.1-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
        }

還有就是,注意 laravel-ubuntu 這個目錄的所有者為: www-data:www-data

最後給,storage 資料夾許可權,重啟 Nginx

相關文章