luceos
The error has actually changed to "Oops" with 500 error. Now, I don't know how to upload an image here... but here are some settings, pasted verbatim:
- The regex:
^image\/.*
, S3, Default image download template
- Key/Secret: they are from a Service Account created in Minio. Not going to paste here.
- Bucket:
flarum
, a bucket created in Minio
- Endpoint:
http://home.local:9000
Also, bucket policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowPublicRead",
"Effect": "Allow",
"Principal": {
"AWS": [
"*"
]
},
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::flarum/*"
]
}
]
}