Skip to content

Latest commit

 

History

History
99 lines (72 loc) · 5 KB

app-service-app-service-environment-custom-settings.md

File metadata and controls

99 lines (72 loc) · 5 KB

Custom configuration settings for App Service Environments

Overview

Because App Service Environments are isolated to a single customer, there are certain configuration settings that can be applied exclusively to App Service Environments. This article documents the various specific customizations that are available for App Service Environments.

If you do not have an App Service Environment, see How to Create an App Service Environment.

You can store App Service Environment customizations by using an array in the new clusterSettings attribute. This attribute is found in the "Properties" dictionary of the hostingEnvironments Azure Resource Manager entity.

The following abbreviated Resource Manager template snippet shows the clusterSettings attribute:

"resources": [
{
   "apiVersion": "2015-08-01",
   "type": "Microsoft.Web/hostingEnvironments",
   "name": ...,
   "location": ...,
   "properties": {
      "clusterSettings": [
         {
             "name": "nameOfCustomSetting",
             "value": "valueOfCustomSetting"
         }
      ],
      "workerPools": [ ...],
      etc...
   }
}

The clusterSettings attribute can be included in a Resource Manager template to update the App Service Environment.

Use Azure Resource Explorer to update an App Service Environment

Alternatively, you can update the App Service Environment by using Azure Resource Explorer.

  1. In Resource Explorer, go to the node for the App Service Environment (subscriptions > resourceGroups > providers > Micrososft.Web > hostingEnvironments). Then click the specific App Service Environment that you want to update.

  2. In the right pane, click Read/Write in the upper toolbar to allow interactive editing in Resource Explorer.

  3. Click the blue Edit button to make the Resource Manager template editable.

  4. Scroll to the bottom of the right pane. The clusterSettings attribute is at the very bottom, where you can enter or update its value.

  5. Type (or copy and paste) the array of configuration values you want in the clusterSettings attribute.

  6. Click the green PUT button that's located at the top of the right pane to commit the change to the App Service Environment.

However you submit the change, it takes roughly 30 minutes multiplied by the number of front ends in the App Service Environment for the change to take effect. For example, if an App Service Environment has four front ends, it will take roughly two hours for the configuration update to finish. While the configuration change is being rolled out, no other scaling operations or configuration change operations can take place in the App Service Environment.

Disable TLS 1.0

A recurring question from customers, especially customers who are dealing with PCI compliance audits, is how to explicitly disable TLS 1.0 for their apps.

TLS 1.0 can be disabled through the following clusterSettings entry:

    "clusterSettings": [
        {
            "name": "DisableTls1.0",
            "value": "1"
        }
    ],

Change TLS cipher suite order

Another question from customers is if they can modify the list of ciphers negotiated by their server and this can be achieved by modifying the clusterSettings as shown below. The list of cipher suites available can be retrieved from [this MSDN article](https://msdn.microsoft.com/library/windows/desktop/aa374757(v=vs.85\).aspx).

    "clusterSettings": [
        {
            "name": "FrontEndSSLCipherSuiteOrder",
            "value": "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384_P256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256_P256,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P256,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA_P256,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA_P256"
        }
    ],

[AZURE.WARNING] If incorrect values are set for the cipher suite that SChannel cannot understand, all TLS communication to your server might stop functioning. In such a case, you will need to remove the FrontEndSSLCipherSuiteOrder entry from clusterSettings and submit the updated Resource Manager template to revert back to the default cipher suite settings. Please use this functionality with caution.

Get started

The Azure Quickstart Resource Manager template site includes a template with the base definition for creating an App Service Environment.