MINIO
6 min
Para uso do MINIO, você deve configurar a porta 443 / SSL para o correto funcionamento.
1-) Crie seu bucket

2-) Crie suas credenciais de acesso

3-) Crie uma política de acesso pública

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/*"
]
}
]
}

4-) Altere a política de acesso de seu bucket


{
"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/*"
]
}
]
}
5-) Configure o WSW com as informações de seu storage remoto
