Skip to content

Commit 905edc7

Browse files
Merge pull request #308792 from seligj95/cipher
App Service Environment custom settings - add note about conflicting cipher settings
2 parents 73fe1be + 1a35b72 commit 905edc7

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: seligj95
55

66
ms.assetid: 1d1d85f3-6cc6-4d57-ae1a-5b37c642d812
77
ms.topic: tutorial
8-
ms.date: 08/20/2025
8+
ms.date: 11/26/2025
99
ms.author: jordanselig
1010
ms.custom: mvc, devx-track-arm-template
1111
ms.service: azure-app-service
@@ -89,6 +89,9 @@ You can also disable TLS 1.0 and TLS 1.1 using the Azure portal by going to the
8989

9090
App Service Environment supports changing the cipher suite from the default. The default set of ciphers is the same set that is used in the multitenant App Service. Changing the cipher suite is only possible with App Service Environment, the single-tenant offering, not the multitenant offering, because changing it affects the entire App Service deployment. There are two cipher suites that are required for an App Service Environment: TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 and TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256. Additionally, you should include the following cipher suites, which are required for TLS 1.3: TLS_AES_256_GCM_SHA384 and TLS_AES_128_GCM_SHA256.
9191

92+
> [!IMPORTANT]
93+
> The `FrontEndSSLCipherSuiteOrder` App Service Environment cluster setting isn't compatible with the app-level `minTlsCipherSuite` setting. If you configure the cipher suite order at the App Service Environment level using `FrontEndSSLCipherSuiteOrder`, don't also configure the minimum TLS cipher suite at the individual app level. You must use one or the other, not both. Configuring both settings can cause SSL errors and rejected requests.
94+
9295
To configure your App Service Environment to use just the ciphers that it requires, modify the **clusterSettings** as shown in the following sample. **Ensure that the TLS 1.3 ciphers are included at the beginning of the list**.
9396

9497
```json

0 commit comments

Comments
 (0)