1

我在 Stack Overflow 上看到了以下评论,但我找不到对它的引用。

"Yes it is. I have seen a Azure webcast from Cloud9 where the application was 
broken up. The static content like images, html, css etc were deployed separately 
than the Azure solution. The azure web app just linked to these resources"

有没有人这样做并且有关于如何做到这一点的任何信息?

4

1 回答 1

1

正如@Joe gennari 提到的:图像链接、css 链接等只需要更改,即可引用 blob 存储中的对象。例如:<img src="http://mystorage.blob.core.windows.net/images/logo.jpg" />

要将内容实际放入 Blob 存储,您可以:

  • 创建一个小的上传器应用程序,通过其中一种语言 SDK(Java、php、.net、python 等)进行非常简单的调用。
  • 使用PowerShell cmdlet上传 blob - 请参阅此处的命令文档。
  • 使用诸如 Cerebrata 的Cloud Storage Studio或 Clumsy Leaf CloudXplorer之类的工具,它使您可以像使用本地文件系统一样使用 blob。

您将不再将静态内容与您的 Windows Azure 项目捆绑在一起。您将单独上传 Blob 更新(无需重新上传 Azure 项目)。这具有减少部署包大小的好处。

于 2012-09-08T14:56:42.217 回答