1. 环境说明
- OS:CentOS Linux release 7.7.1908
- 数据库:mysql 5.6.38
- PHP 版本信息: PHP 7.2.27/Zend Engine v3.2.0/Zend OPcache v7.2.27
- Nginx:为了方便集成lua用的是openresty/1.15.8.2
2. 安装
- 下载->解压
wget https://wordpress.org/latest.tar.gz
- nginx 配置片段
server {
listen 80;
server_name blog.你的域名.com;
root /opt/services/php/wuaissy;
index index.php index.html
client_max_body_size 20m; #允许最大上传文件大小,默认情况下为1m。
location / {
root /path to your/worlpress;
index index.php index.html index.htm;
try_files $uri $uri/ /index.php?$query_string;
}
location ~ .*\.(php|php5)?$
{
fastcgi_pass 127.0.0.1:9000; #php-fpm 地址
fastcgi_index index.php;
include fastcgi.conf;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
- 重新加载Nginx配置文件
/path to nginx/sbin/nginx -s reload
3. 初始化
3.1. 创建数据库,设置好数据库账号密码
3.2. 请求地址:blog.你的域名.com
image.png3.3. 点 "Let's go!"下一步
-
填写好数据库信息-submit 提交
image.png
网友评论