Skip to content

Commit a0cb8c9

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into yelevin/address-gaps
2 parents e2dd1b0 + 866d4ac commit a0cb8c9

File tree

823 files changed

+4293
-5204
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

823 files changed

+4293
-5204
lines changed

.openpublishing.redirection.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6354,10 +6354,10 @@
63546354
"redirect_url": "/azure/reliability/regions-list",
63556355
"redirect_document_id": false
63566356
},
6357-
{
6357+
{
63586358
"source_path_from_root": "/articles/cyclecloud/how-to/ccws/cleanup-roles.md",
63596359
"redirect_url": "/azure/cyclecloud/how-to/ccws/deploy-with-cli",
6360-
"redirect_document_id": false
6360+
"redirect_document_id": false
63616361
},
63626362
{
63636363
"source_path": "articles/cloud-services/applications-dont-support-tls-1-2.md",
@@ -6693,6 +6693,16 @@
66936693
"source_path": "articles/operational-excellence/relocation-managed-identity.md",
66946694
"redirect_url": "/entra/identity/managed-identities-azure-resources/how-to-managed-identity-regional-move",
66956695
"redirect_document_id": false
6696+
},
6697+
{
6698+
"source_path": "articles/notification-hubs/xamarin-notification-hubs-ios-push-notification-apns-get-started.md",
6699+
"redirect_url": "/dotnet/maui/data-cloud/push-notifications",
6700+
"redirect_document_id": false
6701+
},
6702+
{
6703+
"source_path": "articles/notification-hubs/xamarin-notification-hubs-push-notifications-android-gcm.md",
6704+
"redirect_url": "/dotnet/maui/data-cloud/push-notifications",
6705+
"redirect_document_id": false
66966706
}
66976707
]
66986708
}

articles/active-directory-b2c/api-connectors-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ A null value in a database is used when the value in a column is unknown or miss
165165
When an element is null, either:
166166

167167
- Omit the key-value pair from the JSON.
168-
- Return a value that corresponds to the Azure AD B2C claim data type. For example, for a `string` data type, return empty string `""`. For an `integer` data type, return a zero value `0`. For a `dateTime` data type, return a minimum value `1970-00-00T00:00:00.0000000Z`.
168+
- Return a value that corresponds to the Azure AD B2C claim data type. For example, for a `string` data type, return empty string `""`. For an `integer` data type, return a zero value `0`. For a `dateTime` data type, return a minimum value `0001-01-01T00:00:00.0000000Z`.
169169

170170
The following example demonstrates how to handle a null value. The email is omitted from the JSON:
171171

articles/app-service/app-service-asp-net-migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,4 @@ The [app containerization tool](https://azure.microsoft.com/blog/accelerate-appl
111111

112112
## Next steps
113113

114-
[Migrate an on-premises web application to Azure App Service](/training/modules/migrate-app-service-migration-assistant/)
114+
[Migrate an on-premises web application to Azure App Service](/training/modules/migrate-app-service-migration-assistant/)
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
title: What to consider when migrating from Windows to Linux on App Service
3+
description: Learn key considerations when migrating apps from Windows to Linux on Azure App Service.
4+
keywords: azure app service, web app, python, windows, linux, migration
5+
author: jefmarti
6+
7+
ms.topic: overview
8+
ms.date: 03/25/2025
9+
ms.author: jefmarti
10+
---
11+
# What to consider when migrating from Windows to Linux on App Service
12+
13+
Azure App Service supports both Windows and Linux. The supported OS depends on your apps runtime of choice. If a given runtime is no longer supported on an OS, you may need to migrate your application to a supported OS.
14+
15+
If you received a notification that you need to migrate your Python on Windows apps to Linux, consider the following topics when migrating.
16+
17+
### Code dependencies and compatibility
18+
19+
Ensure that any dependencies or components that your application uses are also available on Linux. If Windows specific dependencies are not available on Linux, you may have to find an equivalent Linux option.
20+
21+
### Deployment tools
22+
23+
If you use continuous deployment tools like GitHub Actions or Azure Pipelines, you need to make sure the build agent is using the correct operating system. For Windows to Linux, the build agent should be changed from using Windows to Ubuntu.
24+
25+
### App Service features
26+
27+
While most App Service features will have parity between Windows and Linux, some Windows specific features like the Console are replaced with SSH tools on Linux.
28+
29+
### Domain name
30+
31+
Deploying a new Linux application requires a new name for your app. Keep in mind any connected custom domains need to be updated to route to the new name as well.
32+
33+
### Networking
34+
35+
When redeploying your application to Linux, your inbound IP address changes. See the documentation for more information on inbound IP addresses.
36+
37+
### Managed Identity
38+
39+
If you managed identity is configured with your applications, be sure to update your granted permissions to use the deployed Linux application.
40+
41+

0 commit comments

Comments
 (0)