Armazenamento Externo
MINIO
6min
Para uso do MINIO, você deve configurar a porta 443 / SSL para o correto funcionamento.
Utilize o modelo abaixo, substituindo remotewppdata pelo nome do seu bucket
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::NOMEDOSEUBUCKET/*"
]
}
]
}
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": [
"*"
]
},
"Action": [
"s3:GetBucketLocation"
],
"Resource": [
"arn:aws:s3:::NOMEDOSEUBUCKET"
]
},
{
"Effect": "Allow",
"Principal": {
"AWS": [
"*"
]
},
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::NOMEDOSEUBUCKET/*"
]
}
]
}
Updated 25 May 2024
Did this page help you?