Hosting a Simple Static Web Site on Google Cloud Platform Storage

Hosting a Simple Static Web Site on Google Cloud Platform Storage

Hosting your web site can be done simply with the Google Cloud Platform Buckets.

~Hosting a Static Web Site~

~CNAME~
storage.gawkat.com to c.storage.googleapis.com

~Set Permissions~
gsutil acl ch -u AllUsers:R gs://storage.gawkat.com
gsutil defacl set public-read gs://storage.gawkat.com

~Upload~
gsutil rsync -R . gs://storage.gawkat.com

~Set Pages~
gsutil web set -m index.html -e 404.html gs://storage.gawkat.com

~Goto Site~
http://storage.gawkat.com

~More Information~
https://cloud.google.com/storage/docs/hosting-static-website

Add Comment