Steps to configure a static website on AWS S3

Create an S3 bucket

  • Create the bucket, make sure to enable public access

  • Set the bucket policy (replace mykb.mife.ca with your bucket name):

{
  "Version":"2012-10-17",
  "Statement":[{
	"Sid":"PublicReadGetObject",
        "Effect":"Allow",
	  "Principal": "*",
      "Action":["s3:GetObject"],
      "Resource":["arn:aws:s3:::mykb.mife.ca/*"
      ]
    }
  ]
}
  • Enable website access for this bucket. Specify 404.html as the error document (this is Hugo-specific)

Import disk into proxmox

Example of importing a VM into Proxmox from VMDK In this example i am importing Amazon Storage Gateway Appliance. I extracted AWS-Appliance-2019-07-24-1563990364-disk1.vmdk from the ova file qm create 333 qm importdisk 333 vcsa-b_9-flat.vmdk bronze_vm