rp346
rp346

Reputation: 7058

Nginx to serve downloadable S3 files

I want to serve downloadable files from S3 through Nginx to internal people.

I tried rufuspollock/s3-bucket-listing, which worked perfectly. But it need bucket to be public. I don't want to make bucket public.

Is there any other way to do this possible ?

Upvotes: 6

Views: 1522

Answers (1)

Tarun Lalwani
Tarun Lalwani

Reputation: 146630

This will not work the way you expect. Reason being the endpoints will return XML, so what you need is a web interface which then interfaces with S3 and provides you a folder like interface.

Below thread has a lot of interesting options you can explore

Directory Listing in S3 Static Website

Upvotes: 2

Related Questions