0

I'm working on an app and I upload photos to the minio server. I want to access them from the frontend and I cannot simply write a location of the object in the url because it returns an XML response that says "Access denied.", so I have to pass the access key as a url query as well as it's expiration. Is there a way of enabling public access for every object in a bucket?

Jakub Klimek
  • 433
  • 6
  • 18

1 Answers1

1

mc policy set public <alias>/<mybucket>

this would make the bucket and objects as public.

Read more here

Prakash S
  • 1,695
  • 3
  • 11
  • 20