Ubuntu 20.04 安装配置nginx + PHP
Posted Rudon滨海渔村
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu 20.04 安装配置nginx + PHP相关的知识,希望对你有一定的参考价值。
步骤
## 先清除干净相关的软件,例如apache、php、nginx本身
sudo apt update
sudo apt-get autoremove --purge php-fpm
sudo apt-get autoremove --purge apache2
sudo apt-get autoremove --purge nginx## 开始安装nginx
sudo apt-get install nginx
## 设置Ubuntu自带的防火墙,允许nginx通信
sudo ufw allow 'Nginx Full'
sudo ufw allow 'Nginx HTTP'
sudo ufw status
## 检查nginx运行情况
service nginx status
## 安装PHP
sudo apt install php-fpm
php -v## 检查php运行情况,以下的7.4要根据实际情况修改
systemctl status php7.4-fpm
## Enter P to exit
php -v
service nginx status
service nginx restart## 开始创建nginx虚拟站点
cd /etc/nginx/sites-available/
sudo touch hello.com.conf
=================配置为以下内容,注意其中的php7.4要修改为对应版本=======
server {
listen 80;
listen [::]:80;
root /var/www/;
index index.php index.html index.htm index.nginx-debian.html;
server_name hello.com;location / {
try_files $uri $uri/ index.php =404;
}
location ~ \\.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
}
====================================## 注意!以上内容很容易因为奇怪的空格导致无法启动nginx,
## 有需要时,请手动输入以上内容
cd ../sites-enabled/
sudo ln -s ../sites-available/hello.com.conf .
## 重启Nginx服务器
service nginx restart
## 配置Ubuntu虚拟域名
sudo nano /etc/hosts
=================增加以下内容=======
127.0.0.1 hello.com
==================================
ping hello.com
## 看到结果包含127.0.0.1代表成功,Ctrl+C退出
## 开始修改站点内容
sudo touch /var/www/index.php
sudo nano /var/www/index.php
=================配置为以下内容=======
<?php
phpinfo();
====================================## 打开浏览器,访问http://hello.com/
## 如果可以看到php信息,即可
鸣谢
以上是关于Ubuntu 20.04 安装配置nginx + PHP的主要内容,如果未能解决你的问题,请参考以下文章