WordPress的Jetpack插件更新

问题 WordPress的Jetpack插件可以防止恶意攻击和垃圾评论,最近更新需要授权Jetpack访问所在WordPress站点才能运行。但是我的.htaccess限制了特定IP才能访问。 解决 不限制IP访问便可解决: #我先前限制了只有我的公网IP才能登录我的站点。 #allow from 116.87.39.153 allow from all 参考 Fixing Jetpack Connection Issues Getting Started With Jetpack Here’s how to get started with Jetpack.

AWS通过自动扩展实现高可用 – 创建一个高可用WordPress站点

创建两个S3 Bucket,分别存放Image和Code 创建两个S3,分别存放Image和Code,一个S3 Bucket命名为xiongwpmedia2019,存放图片,另一个S3 Bucket命名为xiongcode2019,用来存放Wordpress代码。 使用CloudFront来访问图片 在Networking & Content Delivery下的CloudFront,做以下设置, Origin Domain Name选择刚刚创建的S3 Bucket, 为xiongwpmedia2019.s3.amazonaws.com。 其它设置为默认。 创建一个Security Group,开放 ipv4 and ipv6的http, port 80, 和 ssh, 22 port,名字设置为Webdmz。 再创建一个 RDS使用的Security Group,取名为MyRDSSG, 允许 3306 port, TCP, Mysql/Aurora, 确保它开放给刚刚创建的 名为Webdmz的 Security Group. 这里的DNS域名地址是: df3jgic6atm3p.cloudfront.net 创建一个RDS和一个EC2 创建一个RDS,记得在Availability & durability里, 设置Create a standby instance (recommended for production usage)。这里要收费。RDS的Endpoint是:xiongrds.cn63rtxgzraf.ap-southeast-1.rds.amazonaws.com。 参见使用AWS云安装WordPress + […]

使用AWS云安装WordPress + RDS MySQL

创建EC2实例 使用以下AWS实例: === Amazon Linux AMI 2018.03.0 (HVM), SSD Volume Type – ami-05c859630889c79c8 The Amazon Linux AMI is an EBS-backed, AWS-supported image. The default image includes AWS command line tools, Python, Ruby, Perl, and Java. The repositories include Docker, PHP, MySQL, PostgreSQL, and other packages. Root device type: ebs Virtualization type: hvm ENA Enabled: Yes […]

AWS Ubuntu Lampp + wordpress install

Started a new AWS Ubuntu Server 14.04 LTS (HVM), installed Lampp and WordPress by install command, this time is much easier because I have done it on AWS RHEL7. 1, install Lampp, the installed directory is /opt/lampp sudo chmod 755 xampp-linux-x64-5.6.21-0-installer.run sudo ./xampp-linux-x64-5.6.21-0-installer.run 2, start the Lampp ubuntu@ip-172-31-23-55:~$ sudo /opt/lampp/lampp status Version: XAMPP for Linux […]