Azure会忽略ARM模板中的站点配置设置 [英] Azure ignores site config settings in ARM template

查看:73
本文介绍了Azure会忽略ARM模板中的站点配置设置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试开发用于部署多个Web应用程序的ARM模板,但是我仍然尝试使用Microsoft.Web/sites/config中提供的设置来配置Web应用程序.无论我放在那里,在部署Webapp时,设置都将被忽略.我将模板基于 David Ebbos示例.. >

这是我目前正在尝试的方法:

// Serverfarm (appservice)
{
    "apiVersion": "2015-08-01",
    "type": "Microsoft.Web/serverfarms",
    "sku": {
        "name": "B1",
        "tier": "Standard",
        "size": "B1",
        "family": "B",
        "capacity": 1
    },
    "name": "[variables('appSvcName')]",
    "location": "[resourceGroup().location]",
    "tags": {
        "project": "[[variables('webAppName')]]"
    },
    "properties": {
        "name": "[variables('appSvcName')]",
        "numberOfWorkers": 1
    }
},
// Site (Webapp)
{
    "apiVersion": "2015-08-01",
    "type": "Microsoft.Web/sites",
    "name": "[variables('webAppName')]",
    "location": "[resourceGroup().location]",
    "tags": {
        "project": "[[variables('webAppName')]]"
    },
    "dependsOn": [
        "[resourceId('Microsoft.Web/serverfarms', variables('appSvcName'))]"
    ],
    "properties": {
        "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('appSvcName'))]",
        "hostNames": [
            "[concat(variables('webAppName'), '.azurewebsites.net')]"
        ],
        "enabledHostNames": [
            "[concat(variables('webAppName'), '.azurewebsites.net')]",
            "[concat(variables('webAppName'), '.scm.azurewebsites.net')]"
        ],
        // TODO : These resources are ignored so far
        "resources": [
            {
                "apiVersion": "2015-08-01",
                "name": "web",
                "type": "Microsoft.Web/sites/config",
                "location": "[resourceGroup().location]",
                "dependsOn": [
                    "[resourceId('Microsoft.Web/Sites', variables('webAppName'))]"
                ],
                "properties": {
                    "phpVersion": "",
                    "netFrameworkVersion": "v4.6",
                    "use32BitWorkerProcess": false, /* 64-bit platform */
                    "webSocketsEnabled": true,
                    "alwaysOn": true,
                    "requestTracingEnabled": true, /* Failed request tracing, aka 'freb' */
                    "httpLoggingEnabled": true, /* IIS logs (aka Web server logging) */
                    "logsDirectorySizeLimit": 40, /* 40 MB limit for IIS logs */
                    "detailedErrorLoggingEnabled": true, /* Detailed error messages  */
                    "remoteDebuggingEnabled": false,
                    "remoteDebuggingVersion": "VS2015",
                    "defaultDocuments": [
                        "default.aspx",
                        "Default.htm",
                        "Default.html",
                        "index.html",
                        "hostingstart.html"
                    ]
                }
            },
            {
                "apiVersion": "2015-08-01",
                "name": "connectionstrings",
                "type": "Microsoft.Web/sites/config",
                "location": "[resourceGroup().location]",
                "dependsOn": [
                    "[resourceId('Microsoft.Web/Sites', variables('webAppName'))]"
                ],
                "properties": {
                    "umbracoDbDsn": {
                        "value": "[concat('Data Source=tcp:', reference(concat('Microsoft.Sql/servers/', variables('sqlServerName'))).fullyQualifiedDomainName, ',1433;Initial Catalog=', variables('sqlDbName'), ';User Id=', variables('appSvcName'), '@', variables('sqlServerName'), ';Password=e15cO1PtIR5dtq3zUlwK;')]",
                        "type": "SQLAzure"
                    }
                }
            }
        ]
    }
}

令我有些困惑的是,当我在azure powershell控制台中运行(Get-AzureRmResourceProvider -ProviderNamespace Microsoft.Web).ResourceTypes时,没有可用的站点/配置ResourceTypeName.

有什么作用?配置资源类型是否已从模板定义中删除?我使用了错误的apiVersion吗?我尝试了多种不同的组合,但无济于事.

解决方案

请参阅此博客- http://wp.sjkp.dk/手臂模板总是设置在其他站点属性上/

您需要在web/config的resource.properties下具有siteConfig对象.

{
    "apiVersion": "2015-08-01",
    "name": "[parameters('webSiteName')]",
    "type": "Microsoft.Web/sites",
    "location": "[resourceGroup().location]",
    "tags": {
        "[concat('hidden-related:', resourceGroup().id, '/providers/Microsoft.Web/serverfarms/', parameters('hostingPlanName'))]": "Resource",
        "displayName": "Website"
    },
    "dependsOn": [
        "[concat('Microsoft.Web/serverfarms/', parameters('hostingPlanName'))]"
    ],
    "properties": {
        "name": "[parameters('webSiteName')]",
        "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', parameters('hostingPlanName'))]"
    },
    "resources": [
        {
            "apiVersion": "2015-08-01",
            "name": "web",
            "type": "config",
            "dependsOn": [
                "[concat('Microsoft.Web/sites/', parameters('webSiteName'))]"
            ],
            "properties": {
                "javaVersion": "1.8",
                "javaContainer": "TOMCAT",
                "javaContainerVersion": "8.0",
                "siteConfig": {
                    "<supported-property>": "<value>",
                }
            }
        }
    ]
}

I am trying to develop an ARM template for deployment of multiple webapps, but I am stuck trying to configure the webapp using the settings available in Microsoft.Web/sites/config. Whatever I put in there, the settings are just ignored when I deploy the webapp. I'm basing my template on David Ebbos example.

This is what I am trying at the moment:

// Serverfarm (appservice)
{
    "apiVersion": "2015-08-01",
    "type": "Microsoft.Web/serverfarms",
    "sku": {
        "name": "B1",
        "tier": "Standard",
        "size": "B1",
        "family": "B",
        "capacity": 1
    },
    "name": "[variables('appSvcName')]",
    "location": "[resourceGroup().location]",
    "tags": {
        "project": "[[variables('webAppName')]]"
    },
    "properties": {
        "name": "[variables('appSvcName')]",
        "numberOfWorkers": 1
    }
},
// Site (Webapp)
{
    "apiVersion": "2015-08-01",
    "type": "Microsoft.Web/sites",
    "name": "[variables('webAppName')]",
    "location": "[resourceGroup().location]",
    "tags": {
        "project": "[[variables('webAppName')]]"
    },
    "dependsOn": [
        "[resourceId('Microsoft.Web/serverfarms', variables('appSvcName'))]"
    ],
    "properties": {
        "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('appSvcName'))]",
        "hostNames": [
            "[concat(variables('webAppName'), '.azurewebsites.net')]"
        ],
        "enabledHostNames": [
            "[concat(variables('webAppName'), '.azurewebsites.net')]",
            "[concat(variables('webAppName'), '.scm.azurewebsites.net')]"
        ],
        // TODO : These resources are ignored so far
        "resources": [
            {
                "apiVersion": "2015-08-01",
                "name": "web",
                "type": "Microsoft.Web/sites/config",
                "location": "[resourceGroup().location]",
                "dependsOn": [
                    "[resourceId('Microsoft.Web/Sites', variables('webAppName'))]"
                ],
                "properties": {
                    "phpVersion": "",
                    "netFrameworkVersion": "v4.6",
                    "use32BitWorkerProcess": false, /* 64-bit platform */
                    "webSocketsEnabled": true,
                    "alwaysOn": true,
                    "requestTracingEnabled": true, /* Failed request tracing, aka 'freb' */
                    "httpLoggingEnabled": true, /* IIS logs (aka Web server logging) */
                    "logsDirectorySizeLimit": 40, /* 40 MB limit for IIS logs */
                    "detailedErrorLoggingEnabled": true, /* Detailed error messages  */
                    "remoteDebuggingEnabled": false,
                    "remoteDebuggingVersion": "VS2015",
                    "defaultDocuments": [
                        "default.aspx",
                        "Default.htm",
                        "Default.html",
                        "index.html",
                        "hostingstart.html"
                    ]
                }
            },
            {
                "apiVersion": "2015-08-01",
                "name": "connectionstrings",
                "type": "Microsoft.Web/sites/config",
                "location": "[resourceGroup().location]",
                "dependsOn": [
                    "[resourceId('Microsoft.Web/Sites', variables('webAppName'))]"
                ],
                "properties": {
                    "umbracoDbDsn": {
                        "value": "[concat('Data Source=tcp:', reference(concat('Microsoft.Sql/servers/', variables('sqlServerName'))).fullyQualifiedDomainName, ',1433;Initial Catalog=', variables('sqlDbName'), ';User Id=', variables('appSvcName'), '@', variables('sqlServerName'), ';Password=e15cO1PtIR5dtq3zUlwK;')]",
                        "type": "SQLAzure"
                    }
                }
            }
        ]
    }
}

One thing I am a bit confused about is that when I run (Get-AzureRmResourceProvider -ProviderNamespace Microsoft.Web).ResourceTypes in my azure powershell console there is no sites/config ResourceTypeName available.

What gives? Have the config resourcetype been removed from the template definitions? Am I using the wrong apiVersion? I have tried a number of different combinations, to no avail.

解决方案

Please see this blog - http://wp.sjkp.dk/arm-templates-set-always-on-and-other-site-properties/

You would need siteConfig object under resource.properties of web/config.

{
    "apiVersion": "2015-08-01",
    "name": "[parameters('webSiteName')]",
    "type": "Microsoft.Web/sites",
    "location": "[resourceGroup().location]",
    "tags": {
        "[concat('hidden-related:', resourceGroup().id, '/providers/Microsoft.Web/serverfarms/', parameters('hostingPlanName'))]": "Resource",
        "displayName": "Website"
    },
    "dependsOn": [
        "[concat('Microsoft.Web/serverfarms/', parameters('hostingPlanName'))]"
    ],
    "properties": {
        "name": "[parameters('webSiteName')]",
        "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', parameters('hostingPlanName'))]"
    },
    "resources": [
        {
            "apiVersion": "2015-08-01",
            "name": "web",
            "type": "config",
            "dependsOn": [
                "[concat('Microsoft.Web/sites/', parameters('webSiteName'))]"
            ],
            "properties": {
                "javaVersion": "1.8",
                "javaContainer": "TOMCAT",
                "javaContainerVersion": "8.0",
                "siteConfig": {
                    "<supported-property>": "<value>",
                }
            }
        }
    ]
}

这篇关于Azure会忽略ARM模板中的站点配置设置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆