Ubuntu16.04搭建LNMP
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; 在此把#去掉
} 在此把#去掉
相關文章
- lnmp搭建LNMP
- LNMP搭建HDwikiLNMP
- 阿里雲 Ubuntu16.04 部署 LNMP 環境阿里UbuntuLNMP
- LNMP 環境搭建LNMP
- 搭建lnmp環境LNMP
- lnmp環境搭建LNMP
- 搭建LNMP架構LNMP架構
- Ubuntu16.04搭建LAMPUbuntuLAMP
- docker搭建lnmp環境DockerLNMP
- docker 搭建 lnmp 環境DockerLNMP
- 如何搭建LNMP環境LNMP
- ubuntu lnmp環境搭建UbuntuLNMP
- PHP-lnmp 環境搭建PHPLNMP
- Docker LNMP Redis 環境搭建DockerLNMPRedis
- Windows 下搭建 lnmp 環境WindowsLNMP
- LNMP環境搭建(二):NginxLNMPNginx
- Ubuntu14.04搭建LNMPUbuntuLNMP
- LNMP環境搭建——Nginx篇LNMPNginx
- docker下LNMP環境搭建DockerLNMP
- ubuntu16.04搭建java環境UbuntuJava
- ubuntu16.04 搭建java 環境UbuntuJava
- ubuntu16.04 搭建java 環境UbuntuJava
- 搭建 lnmp 環境之 nginx 篇LNMPNginx
- Deepin 15 搭建 LNMP 環境 + swooleLNMP
- Dockfile搭建極簡LNMP環境LNMP
- 阿里雲centOS下LNMP搭建阿里CentOSLNMP
- 基於Docker搭建LNMP環境DockerLNMP
- LNMP 原始碼安裝搭建薦LNMP原始碼
- docker 學習筆記之實戰 lnmp 環境搭建系列 (2) ------ 手動搭建 lnmp 環境Docker筆記LNMP
- 利用 Docker 一鍵搭建 LNMP 環境DockerLNMP
- 雲伺服器怎麼搭建lnmp伺服器LNMP
- docker搭建laravel開發環境lnmpDockerLaravel開發環境LNMP
- RedHat/CentOs系統搭建lnmp環境RedhatCentOSLNMP
- LNMP+FastCGI平臺搭建指令碼LNMPAST指令碼
- Nginx網站服務LNMP搭建論壇Nginx網站LNMP
- LNMP網站框架搭建(編譯安裝)LNMP網站框架編譯
- linuxshell指令碼之lnmp的搭建Linux指令碼LNMP
- 搭建 LNMP + CodeIgniter 開發環境LNMP開發環境