INDEX
2023-12-22 09:40 - Use AWS to write a website So I've made an S3 bucket, public with all restrictions off Now I want to write to it using just AWS tool - Using AWS CloudShell aws help # Files are stored in s3://BUCKETNAME touch test; aws s3 cp test s3://BUCKETNAME; aws s3 rm s3://BUCKETNAME/test vim index.html; aws s3 cp index.html s3://BUCKETNAME Trying to now enable website for viewing - set s3 to static website mode aws s3api head-bucket --bucket BUCKETNAME