Skip to content

Commit 3bf9f0b

Browse files
committed
acrolinx
1 parent b486735 commit 3bf9f0b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

articles/app-service/deploy-run-package.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.date: 01/14/2020
1010

1111
In [Azure App Service](overview.md), you can run your apps directly from a deployment ZIP package file. This article shows how to enable this functionality in your app.
1212

13-
All other deployment methods in App Service have something in common: your files are deployed to *D:\home\site\wwwroot* in your app (or */home/site/wwwroot* for Linux apps). Since the same directory is used by your app at runtime, it's possible for deployment to fail due to file lock conflicts, and for the app to behave unpredictably because some of the files are not yet updated.
13+
All other deployment methods in App Service have something in common: your files are deployed to *D:\home\site\wwwroot* in your app (or */home/site/wwwroot* for Linux apps). Since the same directory is used by your app at runtime, it's possible for deployment to fail because of file lock conflicts, and for the app to behave unpredictably because some of the files are not yet updated.
1414

1515
In contrast, when you run directly from a package, the files in the package are not copied to the *wwwroot* directory. Instead, the ZIP package itself gets mounted directly as the read-only *wwwroot* directory. There are several benefits to running directly from a package:
1616

articles/app-service/deploy-zip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The WAR file deployment deploys your [WAR](https://wikipedia.org/wiki/WAR_(file_
2626

2727
## Prerequisites
2828

29-
To complete the steps in this article,[create an App Service app](/azure/app-service/), or use an app that you created for another tutorial.
29+
To complete the steps in this article, [create an App Service app](/azure/app-service/), or use an app that you created for another tutorial.
3030

3131
[!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
3232

includes/app-service-deploy-atomicity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ ms.custom: "include file"
1414

1515
All the officially supported deployment methods make changes to the files in the `/home/site/wwwroot` folder of your app. These files are used to run your app. Therefore, the deployment can fail because of locked files. The app may also behave unpredictably during deployment, because not all the files updated at the same time. This is undesirable for a customer-facing app. There are a few different ways to avoid these issues:
1616

17-
- [Run your app from the ZIP package directly](../articles/app-service/deploy-run-package.md), without unpacking it.
17+
- [Run your app from the ZIP package directly](../articles/app-service/deploy-run-package.md) without unpacking it.
1818
- Stop your app or enable offline mode for your app during deployment. For more information, see [Deal with locked files during deployment](https://github.com/projectkudu/kudu/wiki/Dealing-with-locked-files-during-deployment).
1919
- Deploy to a [staging slot](../articles/app-service/deploy-staging-slots.md) with [auto swap](../articles/app-service/deploy-staging-slots.md#configure-auto-swap) enabled.

includes/app-service-web-deploy-zip-prepare.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In a local terminal window, navigate to the root directory of your app project.
2020

2121
This directory should contain the entry file to your web app, such as _index.html_, _index.php_, and _app.js_. It can also contain package management files like _project.json_, _composer.json_, _package.json_, _bower.json_, and _requirements.txt_.
2222

23-
Unless you want App Service to run deployment automation for you, run all the build tasks (e.g. `npm`, `bower`, `gulp`, `composer`, `pip`, etc.) and make sure that you have all the files you need to run the app. This step is required if you want to [run your package directly](../articles/app-service/deploy-run-package.md).
23+
Unless you want App Service to run deployment automation for you, run all the build tasks (for example, `npm`, `bower`, `gulp`, `composer`, and `pip`) and make sure that you have all the files you need to run the app. This step is required if you want to [run your package directly](../articles/app-service/deploy-run-package.md).
2424

2525
Create a ZIP archive of everything in your project. The following command uses the default tool in your terminal:
2626

0 commit comments

Comments
 (0)