- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试通过 Powershell 将虚拟应用程序添加到 Azure 网站。尽管脚本运行时没有错误,但我的更改不会出现在 Portal.azure.com 中。最后我需要运行另一个命令来保存更改吗?
$subscriptionId = "secret"
$websiteName = "MyWebsite"
$resourceGroupName = "MyResourceGroup"
$siteName = "Test"
Get-Module AzureRM
Login-AzureRmAccount
Select-AzureRmSubscription -SubscriptionId $subscriptionId
$website = Get-AzureRmWebApp -Name $websiteName -ResourceGroupName $resourceGroupName
$VDApp = New-Object Microsoft.Azure.Management.WebSites.Models.VirtualApplication
$VDApp.VirtualPath = "/$siteName"
$VDApp.PhysicalPath = "site\$siteName"
$VDApp.PreloadEnabled ="YES"
$website.siteconfig.VirtualApplications.Add($VDApp)
$website | Set-AzureRmWebApp -ResourceGroupName $resourceGroupName
最佳答案
尝试使用以下命令添加虚拟应用程序。
$resourceGroupName = ""
$websiteName = ""
$WebAppApiVersion = "2015-08-01"
# Example call: SetWebAppConfig MyResourceGroup MySite $ConfigObject
Function SetWebAppConfig($ResourceGroupName, $websiteName, $ConfigObject)
{
Set-AzureRmResource -ResourceGroupName $ResourceGroupName -ResourceType Microsoft.Web/sites/Config -Name $websiteName/web -PropertyObject $ConfigObject -ApiVersion $WebAppApiVersion -Force
}
Write-Host "Set a virtual application"
$props=@{
virtualApplications = @(
@{ virtualPath = "/"; physicalPath = "site\wwwroot" },
@{ virtualPath = "/bar"; physicalPath = "site\wwwroot" }
)
}
SetWebAppConfig $ResourceGroupName $websiteName $props
我在实验室进行了测试,它对我有用。
关于azure - Powershell 中的 Set-AzureRmWebApp 更改未出现在 Azure 门户中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45923540/
我尝试使用 cmdlet Get-AzureRmWebApp 运行 powershell 脚本,但收到错误 Get-AzureRmWebApp:术语“Get-AzureRmWebApp”未被识别为 c
我尝试使用 cmdlet Get-AzureRmWebApp 运行 powershell 脚本,但收到错误 Get-AzureRmWebApp:术语“Get-AzureRmWebApp”未被识别为 c
我一直在开发部署脚本来创建和自动化 Azure Web 应用程序,并且这些脚本运行良好。 今天,我尝试将它们转移到应用服务环境中,为生产做好准备。 我发现用于创建 Web 应用程序的命令不适用于 AS
我正在运行 Powershell 5 并尝试使用 Set-AzureRmWebApp(而不是 Set-AzureResource)操作我的 Azure WebApp 对象,以设置 Web 应用程序的“
我正在尝试通过 Powershell 将虚拟应用程序添加到 Azure 网站。尽管脚本运行时没有错误,但我的更改不会出现在 Portal.azure.com 中。最后我需要运行另一个命令来保存更改吗?
我正在尝试通过 Powershell 将虚拟应用程序添加到 Azure 网站。尽管脚本运行时没有错误,但我的更改不会出现在 Portal.azure.com 中。最后我需要运行另一个命令来保存更改吗?
我想使用 Automation Runbook 中的 Get-AzureRm* 命令获取所有属性,但以下返回异常。如何编码才能正确运行这些命令? 返回异常 获取 AzureRmAppServicePl
我正在尝试添加新绑定(bind)并从 Microsoft 收到指向以下指南的链接: https://learn.microsoft.com/en-us/powershell/module/azurer
我是一名优秀的程序员,十分优秀!