您好,登錄后才能下訂單哦!
1.進行更新 (具體文檔請聯系本博主,首頁有博主郵箱)
2.安裝MySQL
# 連續輸入兩次相同的密碼
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/目錄下,新建個index.php測試下看看
13.搭建完成 探針顯示
PHP Version 7.0.18-0ubuntu0.16.04.1
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。