How to open the permanent access link in minio

    I just used minio recently, and then used the official api to get a temporary link (client.getPresignedObjectUrl), only seven days, very inconvenient. All kinds of strange methods on the Internet are very troublesome. It is better to use the following method to make it simpler.

solve:

1, enter the bucket

2. Click Create Rule

3. Fill in the prefix prefix with *, representing all files in the bucket, and then fill in readonly for Access.

Click OK to finish.

Then all files in this bucket are publicly readable, and can be accessed through domain name + bucketName + file path, such as  https://oss.alapp.com/test/6.jpg  .

Guess you like

Origin blog.csdn.net/zdb1314/article/details/125287537