网站文件托管

更新时间: 2019-03-14 10:05

您可通过以下步骤实现网站文件托管:

  • 将网站文件上传至OBS的桶中,并设置对象MIME类型。
  • 设置对象访问权限为公共读。
  • 通过浏览器访问对象。

以下代码展示了如何实现网站文件托管:

  1. // 引入依赖包
  2. import (
  3. "fmt"
  4. "obs"
  5. )
  6.  
  7. var ak = "*** Provide your Access Key ***"
  8. var sk = "*** Provide your Secret Key ***"
  9. var endpoint = "https://your-endpoint"
  10.  
  11. // 创建ObsClient结构体
  12. var obsClient, _ = obs.New(ak, sk, endpoint)
  13.  
  14. func main() {
  15. input := &obs.PutFileInput{}
  16. input.Bucket = "bucketname"
  17. input.Key = "test.html"
  18. input.SourceFile = "localfile.html"
  19. // 设置对象MIME类型
  20. input.ContentType = "text/html"
  21. // 设置对象访问权限为公共读
  22. input.ACL = obs.AclPublicRead
  23. // 上传对象
  24. output, err := obsClient.PutFile(input)
  25. if err == nil {
  26. fmt.Printf("RequestId:%s\n", output.RequestId)
  27. } else if obsError, ok := err.(obs.ObsError); ok {
  28. fmt.Printf("Code:%s\n", obsError.Code)
  29. fmt.Printf("Message:%s\n", obsError.Message)
  30. }
  31. }

网站文件托管 - 图1 说明:

上例中您可以使用http://bucketname.your-endpoint/test.html在浏览器直接访问托管的文件。

父主题:静态网站托管