15还是16年的时候买的阿里云和腾讯云最低配的1核1G。腾讯云和阿里云后来都涨价了,退了涨价多的那个腾讯云,阿里云一直续费到现在,wordpress这个最早的时候是用军哥的lnmp的一键包搭建的,后来改成用了带UI的宝塔,宝塔用了一段时间后发现Let's Encrypt的SSL证书续期总掉,还不如一键包的时候的cert bot。
在互联网上搜索1核1G能否安装docker,回答也是模棱两可。在wordpress上安装UpdraftPlus插件备份全部数据,最后趁着空闲时间安装上docker和docker compose后发现,这个内存cpu占用比宝塔低,感觉是真香。
简单搭了一下wordpress和portainer配置了一下域名,使用UpdraftPlus插件恢复数据,文章、主题、数据都回来了。https的问题后续再搞定。
吐槽一下,现在阿里云不让1核1G重装为Rocky Linux和Alma LInux,为了推广自己的CentOS替代真是用尽策略。现在还保留了已经EOL的CentOS8,试了一下转换Rocky Linux的脚本也失效了。所以我最终退回了Centos 7.8。
1核1G的mysql数据库在阿里云上表现不是很好,很多时候会由于io问题挂掉。所以需要关掉性能模式。阿里云原理上还是虚拟机,大家都知道虚拟机是共享内存cpu硬盘的。一般每周一9点是高峰期,这个时间测下高峰期的iops可以看看你买的机器是否合适。续费的时候需要再测一遍,因为后续还会有同一宿主机的虚拟机入驻。我的mysql不关性能模式在高峰期是直接挂掉的。
迁移后的配置
docker-compose.yml的配置如下
version: '2' services: portainer: image: 'portainer/portainer-ce:latest' container_name: portainer ports: - '19000:9000' volumes: - '${PWD}/portainer/data:/data' - '/var/run/docker.sock:/var/run/docker.sock' restart: always mysql: container_name: mysql image: 'mysql:8.0.28' volumes: - '${PWD}/mysql/db:/var/lib/mysql' - '${PWD}/mysql/conf/my.cnf:/etc/mysql/my.cnf' - '${PWD}/mysql/init:/docker-entrypoint-initdb.d' #ports: #- '3306:3306' environment: - MYSQL_ROOT_PASSWORD=wordpress@2023 - MYSQL_DATABASE=wordpress - MYSQL_USER=wordpress - MYSQL_PASSWORD=wordpress@2023 - TZ=Asia/Shanghai restart: always command: - '--character-set-server=utf8mb4' - '--collation-server=utf8mb4_unicode_ci' wordpress: container_name: wordpress depends_on: - mysql image: 'wordpress:latest' volumes: - '${PWD}/wordpress:/var/www/html' #ports: #- '80:80' restart: always environment: WORDPRESS_DB_HOST: 'mysql:3306' WORDPRESS_DB_USER: wordpress WORDPRESS_DB_PASSWORD: wordpress@2023 WORDPRESS_DB_NAME: wordpress nginx: container_name: nginx image: 'nginx:1.20.0' ports: - '80:80' volumes: - '${PWD}/nginx/html:/usr/share/nginx/html' - '${PWD}/nginx/conf.d:/etc/nginx/conf.d' environment: - TZ=Asia/Shanghai restart: always
nginx配置文件default.conf
server { listen 80; listen [::]:80; server_name blog.example.com; location / { proxy_pass http://wordpress/; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Proto $scheme; } } server { listen 80; listen [::]:80; server_name www.example.com; return 301 http://blog.example.com; }
mysql配置文件my.cnf
# Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; version 2 of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # The MySQL Server configuration file. # # For explanations see # http://dev.mysql.com/doc/mysql/en/server-system-variables.html [mysqld] pid-file = /var/run/mysqld/mysqld.pid socket = /var/run/mysqld/mysqld.sock datadir = /var/lib/mysql secure-file-priv= NULL # Custom config should go here !includedir /etc/mysql/conf.d/
然后安装UpdraftPlus插件恢复数据。
命令如下
全局查找配置文件
#全局查找配置文件 find / -name my.cnf #非容器模式下的路径是/etc/my,cnf #容器下的路径是/etc/mysql/my.cnf
编辑配置文件
vi /etc/mysql/my.cnf
在[mysqld]后加
performance_schema=off
重启mysql生效
默认情况下公网总有一些ip扫描xmlrpc.php,所以我们需要安装爆破扫描插件禁掉这些访问。
如果想查看你的xmlrpc.php服务是否开启,可以访问 http://www.example.com/xmlrpc.php有返回则为开启状态。
需要安装的插件名为Disable XML-RPC-API ,安装后默认禁用xmlrpc.php访问,可添加ip白名单
nginx映射端口和路径修改
增加端口443,路径映射添加/etc/letsencrypt/live和/etc/letsencrypt/archive
nginx: container_name: nginx image: 'nginx:1.20.0' ports: - '80:80' - '443:443' #添加443端口 volumes: - '${PWD}/nginx/html:/usr/share/nginx/html' - '${PWD}/nginx/conf.d:/etc/nginx/conf.d' - '${PWD}/nginx/sslcert/live:/etc/letsencrypt/live' #certbot证书路径 - '${PWD}/nginx/sslcert/archive:/etc/letsencrypt/archive' #certbot证书路径 environment: - TZ=Asia/Shanghai restart: always
nginx的conf添加
location ~/.well-known/acme-challenge/ { root /usr/share/nginx/html; }
重启nginx
执行如下命令生成证书
docker run -it --rm \ --volumes-from nginx \ certbot/certbot certonly \ --webroot \ --non-interactive \ --agree-tos \ --webroot-path=/usr/share/nginx/html \ -m admin@qq.com \ -d blog.example.com
执行完成后生成的证书在/nginx/sslcert/live目录,使用链接指向archive目录
配置nginx使用证书,conf添加
listen 443 ssl; ssl_certificate /etc/letsencrypt/live/blog.example.com/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/blog.example.com/privkey.pem;
重启nginx访问
https://blog.example.com
续签证书,官方证书有效期为90天,90天后需要执行命令续签。但是续签也不能太频繁,七天不能超过5次,每周五凌晨两点重置次数。
续签官方命令certbot renew,这里我们在docker里可能没有certbot续签配置,我们使用定时任务执行
编写配置文件
crontab -e
i进编辑模式,添加如下内容
#5位:分 时 日 月 星期 #6位:分 时 日 月 星期 年 #7位:秒 分 时 日 月 星期 年 #周(0~6 0=SUN 或 SUN,MON,TUE,WED,THU,FRI,SAT) #命令含义:每周一8点,删除30天前live目录和archive目录的pem文件,重新申请证书,重启nginx 0 8 * * 1 docker exec -it nginx find /etc/letsencrypt/live/ -mmin +43200 -name "blog.example.com" -type d -exec rm -rf {} \; 1 8 * * 1 docker exec -it nginx find /etc/letsencrypt/archive/ -mmin +43200 -name "blog.example.com" -type d -exec rm -rf {} \; 2 8 * * 1 docker run -it --rm --volumes-from nginx certbot/certbot certonly --webroot --non-interactive --agree-tos --webroot-path=/usr/share/nginx/html -m admin@qq.com -d blog.example.com 3 8 * * 1 docker restart nginx
esc后输入:wq回车保存。保存即生效。
禁止主动发送pingback
设置–讨论 取消勾选 尝试通知文章中链接的博客
老文章可以尝试执行SQL取消发送pingback
UPDATE wp_posts SET ping_status = 'closed' WHERE post_date is not null
但是这个SQL执行这个无效,估计改的是接收不是发送。安装WordPress Ping Optimizer插件禁用ping功能即可。
原文链接:https://blog.csdn.net/gsls200808/article/details/129268360?ops_request_misc=&request_id=291bf1eab3354700872bfdb51567a51c&biz_id=&utm_medium=distribute.pc_search_result.none-task-blog-2~blog~koosearch~default-21-129268360-null-null.268%5Ev1%5Econtrol&utm_term=docker%E3%80%81wordpress%E3%80%81wordpress%E5%BB%BA%E7%AB%99%E3%80%81wordpress%E4%B8%BB%E9%A2%98%E3%80%81%E5%AE%B9%E5%99%A8%E9%95%9C%E5%83%8F%E3%80%81