English 中文(简体)
保护试验/黄云中运行的贝塔/保护试验站点
原标题:Protect test/beta site running in azure
  • 时间:2012-05-27 20:55:51
  •  标签:
  • azure

我们正在开发一个新的网站,以“黄流”运行。我们正在开发一个新的网站。我们正在开发,以对抗当地的“黄流” Dev 环境。但现在我们需要在真实的Azure世界中公布和测试这个网站。 但我们想在“封闭”环境中运行,因为只有用户才能进入,因为这个网站还不应该启用。有建议要做到这一点吗?

山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山 山

最佳回答

Windows Azure有某种叫作中转模式的东西, 请见此文章: http://sevans.info/2010/10/10/ windows- azure- stage- model/

它的威力非常强大 就我看来,它正是你需要的

问题回答

您可以删除您实例配置的端点, 这样就不会通过负载平衡器进行转发。 在此之后您可以使用远程桌面登录您的“ zure ” 实例并测试您的网络应用程序 。

此外,我还要在这份清单中再增加两点:

  1. 使用生产部署, 并有一个含有目录浏览功能障碍的虚拟索引/ 默认页面( 已经设置为默认) 。 所以当有人来您的网站时, 他们看不到什么。 因为没有目录浏览, 因此他们无法猜测页面 *. aspx 访问您的网站 。 这将保持您的生产网站运行, 您可以从外部测试它 。

  2. 正在删除您的实例表“ 负载平衡器”, 同时保持您的实例健康 。 这将需要您测试 RDP 的 Azure 应用程序, 然后在您的实例中启动 。 如果您想要这样做的话, 请在这里测试 < a href=" http://blogs. msdn.com/ b/ avkashchauhan/archive/2012/01/ 27/ windowows- azure- troblefreshing- takeking- except- windowows- azure- Instance- offline. aspx" rel=“ no follow” > Powershell 的技巧。

如果您有静态的 IP 地址, 您可以限制 IP 地址 。 根据此链接 : < a href=" https:// azure. microsoft.com/ en- us/blog/ ip-and- domain- restrations- for- windowows- azure- web- sites/ " rel= “ nofollow” > https://azure. microsoft.com/ en- us/blog/ ip-and- domain- restrations- for- windowows- azure- web- sites/

开发者可以使用 IP 和 域限制 控制 IP 的 IP 地址, 并控制 地址范围, 这些地址允许或拒绝访问他们的网站 。 Windows Azure 网站的开发者可以启用/ 禁用该功能, 并使用位于他们网站的 Web. config 文件定制其行为 。

这里的代码是:

<system.webServer>
  <security>
    <ipSecurity allowUnlisted="false" denyAction="NotFound">
      <add allowed="true" ipAddress="123.456.0.0" subnetMask="255.255.0.0"/>
    </ipSecurity>
  </security>
</system.webServer>




相关问题
Windows Azure WorkerRole response

I am working on an Azure demo to run Powershell in a worker role. In my web role I add the name of the Powershell script which is to be run to a CloudQueue object. I can print the script output to ...

Windows Azure WebRole stuck in a deployment loop

I ve been struggling with this one for a couple of days now. My current Windows Azure WebRole is stuck in a loop where the status keeps changing between Initializing, Busy, Stopping and Stopped. It ...

Getting a token for Windows Azure

We are looking at Windows Azure, but getting a token appears to be hard now, at least that s what I m seeing in web searches. Anyone tried it or know how to accelerate that process? Any idea how long ...

Developing Azure .Net 4.0 Applications

Presently .Net 4.0 is not supported on Azure. This thread indicates that you will not be able to use .Net 4.0 with VS 2010 until it is supported in the cloud. http://social.msdn.microsoft.com I d ...

.NET 4.0 on Windows Azure?

My google-fu is failing me on this one. As a possible solution to Unit Testing .NET 3.5 projects using MStest in VS2010 (but I ve put this in a seperate question because it s kind of unrelated): Is ...

热门标签