google cloud storage託管靜態頁面
初始步驟
1、 域名
2、 google Cloud create project. the project name must match the domain name
3、cname
1
2
NAME TYPE DATA
www.example.com CNAME c.storage.googleapis.com.
Google Cloud SDK
oogle Cloud SDK 是一套工具,您可以使用這套工具來管理託管在 Google Cloud Platform 上的資源和應用。其中包括 gcloud、gsutil 和 bq 命令列工具。install
gsutil 工具
設定所有檔案的許可權可見
1
gsutil acl -r ch -u AllUsers:R gs://www.dreamerjonson.com/*
刪除檔案:
-r遞迴遍歷所有
1
gsutil rm -r gs://www.dreamerjonson.com/.git/
上傳單個檔案
1
gsutil cp test.js gs://www.dreamerjonson.com
上傳資料夾下所有檔案
1
gsutil cp -r ./ gs://www.dreamerjonson.com
增量同步
-m多執行緒 -d 刪除不匹配的檔案 -r遞迴
1
gsutil -m rsync -d -r ./ gs://www.dreamerjonson.com
設定 MainPageSuffix 和 NotFoundPage
在以下示例中,MainPageSuffix 被設定為 index.html,NotFoundPage 被設定為 404.html:
1
gsutil web set -m index.html -e 404.html gs://www.example.com
更新預設上傳許可權
1
gsutil defacl ch -u AllUsers:R gs://www.dreamerjonson.com
參考資料
google domains help
storage託管靜態頁面
gsutil使用
gsutil快速入門
gsutil defacl