My config looks like this:
{
default: "minio",
disks: {
minio: {
driver: "s3",
config: {
key: "root",
secret: "password",
endpoint: "http://127.0.0.1:9000",
bucket: "mybucket",
region: "us-east-1",
},
},
},
}
And when I attempt to read/write I get a large error that includes the message:
UnknownEndpoint: Inaccessible host: mybucket.127.0.0.1. This service may not be available in the us-east-1
It seems flydrive is assuming a domain name, which is how AWS configures their servers, but is not how the protocol is defined.
How can I configure flydrive to access my MinIO container without a subdomain requirement?
My config looks like this:
And when I attempt to read/write I get a large error that includes the message:
It seems flydrive is assuming a domain name, which is how AWS configures their servers, but is not how the protocol is defined.
How can I configure flydrive to access my MinIO container without a subdomain requirement?