您好,登錄后才能下訂單哦!
1.進(jìn)行更新 (具體文檔請(qǐng)聯(lián)系本博主,首頁有博主郵箱)
2.安裝MySQL
# 連續(xù)輸入兩次相同的密碼
3.安裝nginx和php
添加nginx和php的ppa源
4.安裝Nginx
5.安裝PHPFastCGI管理器
6.修改配置文件(此步可以省略)
7.查看 listen = /run/php/php7.0-fpm.sock 是否被開啟
一般為開啟
8.修改重啟下 php-fpm7.0 (可以忽略)
9.修改nginx配置文件
sudo vim /etc/nginx/sites-enabled/default
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html; 添加index.php
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ { 在此把#去掉
include snippets/fastcgi-php.conf; 在此把#去掉
#
# # With php7.0-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php7.0-fpm:
fastcgi_pass unix:/run/php/php7.0-fpm.sock; 在此把#去掉
} 在此把#去掉
10.socket 方式 必須和上面socket的listen路徑一樣
11.重啟nginx
12.在/var/www/html/目錄下,新建個(gè)index.php測(cè)試下看看
13.搭建完成 探針顯示
PHP Version 7.0.18-0ubuntu0.16.04.1
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。