Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to edit files in AWS S3 in the browser?

I have hosted my Homepage over Amazon's S3 system. In order to change information on the page, currently, I have to change the file on my computer and upload the new version. However, I would like to directly change the file in the S3 bucket within a browser (to change it anywhere).

Is there a cloud-based text editor that can use S3 as a "file system" and would allow me to change text files (e.g., html, css, js, etc.)?

like image 632
Jörg Rech Avatar asked Dec 29 '12 11:12

Jörg Rech


People also ask

Can I access S3 bucket from browser?

In short, if you set x-amz-acl: public-read on a file then you can access it as https://s3.amazonaws.com/bucket-name/path-to-file . No need for enabling website hosting, unless you want the pretty hostname and support for index and error documents.

How do I access private S3 bucket in browser?

To see how this works, click a private file in the Amazon S3 Management Console, then choose Open from the Actions menu. The object will be opened. This is done by providing the browser with a pre-signed URL that includes a cryptographically-sized URL and a period of validity.


1 Answers

I would use S3 Sync from the awscli to download the files and edit them locally before syncing them back to their original location and updating the originals.

Documentation on S3 sync here: https://docs.aws.amazon.com/cli/latest/reference/s3/sync.html

EDIT: Example:

  1. aws s3 sync s3://mybucket .
  2. edit your files locally
  3. aws s3 sync . s3://mybucket
like image 77
fIwJlxSzApHEZIl Avatar answered Sep 16 '22 22:09

fIwJlxSzApHEZIl