使用环境
1. Ubuntu 22.042. PhP 4.0 3. nginx4. MySQL 5.7
软件安装
- 安装nginx
#1. 更新系统
sudo apt update && sudo apt upgrade -y#2. 安装nginx
sudo apt install nginx -y
- 安装MySQL
apt list -a mysql-server
- 安装 PHP 7.4
使用 ondrej/php PPA
sudo apt install software-properties-common -y
sudo add-apt-repository ppa:ondrej/php
sudo apt update
安装 PHP 7.4 以及与 Nginx 和 MySQL 相关的一些常用扩展:
sudo apt install php7.4 php7.4-fpm php7.4-mysql php7.4-cli php7.4-fpm php7.4-json php7.4-common php7.4-mbstring php7.4-zip php7.4-gd php7.4-mysqli -y
弃用php并设置自启动
sudo systemctl start php7.4-fpm
sudo systemctl enable php7.4-fpm
Linux搭建DedeCMS运行环境,官网文档
https://help.dedecms.com/
源码下载地址
https://www.dedecms.com/
说明:
- 文件下载后更改目录 uploads 名称
- 配置nginx conf文件内容
- 域名访问并设置MySQL配置
- 正式网站访问
nginx conf配置文件内容
server {listen 80;server_name xxx.test.com;root /project/www;index index.php index.html index.htm;location / {try_files $uri $uri/ /index.php?$query_string;}location ~ \.php$ {include snippets/fastcgi-php.conf;fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;include fastcgi_params;}location ~ /\.ht {deny all;}
}