我已经关闭aws s3的公开访问,因为开放两天访问次数已经接近2000,将会超过免费额度
创建存储桶
- 取名。
- 允许公开访问对象。
编辑存储桶策略
注意,这里的Referer字符串值不要遗漏最后的斜杠。
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowBlogRead",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::astro-blog-paper/*",
"Condition": {
"StringLike": {
"aws:Referer": "https://daybreakpaper.wffger.fun/"
}
}
}
]
}
引用图片
Markdown中使用图床图片
![image.png](https://astro-blog-paper.s3.ap-southeast-1.amazonaws.com/logo.svg)
我换成了腾讯云的COS作为图床
![image.png](https://p-1258160789.cos.ap-guangzhou.myqcloud.com/blog/daybreakpaper.svg)
效果: