記錄 Ubuntu18.04 lnmp nginx1.14 PHP7.2 MySQL5.7 安裝 配置

上古神獸單身狗發表於2018-12-19

1.apt更新

apt update

2.安裝nginx1.14
系統預設安裝1.14 ,具體版本和系統相關

apt install -y nginx

3.安裝mysql
系統預設安裝5.7.24,具體版本和系統相關

apt install -y mysql-server mysql-client

4.安裝php

apt install -y php7.2 php7.2-fpm php7.2-mysql

5.配置站點
進入站點目錄

cd /etc/nginx/sites_enabled
vim www.conf

 listen 80 default_server;
 listen [::]:80 default_server;

專案目錄

root /var/www/html;

域名

server_name www.domain.com;

url重寫

location / {
     try_files $uri $uri/ /index.php?$query_string;
}

解析php

location ~ \.php$ {
     include snippets/fastcgi-php.conf;
     fastcgi_pass unix:/run/php/php7.2-fpm.sock;
     fastcgi_pass 127.0.0.1:9000;
}

QQ交流群 602748730

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章