I want to connect to local minio with qts3. I changed some part of it but still I cannot connect to local minio.
changes:
in sendS3Request() :
const QByteArray host = "127.0.0.1:9000/minio/" + bucketName;
const QByteArray url = "http://" + host + "/" + path.toLatin1() + "?" + queryString;
I want to connect to local minio with qts3. I changed some part of it but still I cannot connect to local minio. changes: in sendS3Request() : const QByteArray host = "127.0.0.1:9000/minio/" + bucketName; const QByteArray url = "http://" + host + "/" + path.toLatin1() + "?" + queryString;
in location_impl(): const QByteArray host = "127.0.0.1:9000"; const QByteArray url = "http://" + host + "/" + bucketName + "?location";