Skip to content

Commit

Permalink
Link updates (dotnet#15324)
Browse files Browse the repository at this point in the history
  • Loading branch information
guardrex authored Oct 26, 2019
1 parent f7a6e54 commit 04ebc17
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Discover support for debugging ASP.NET Core apps when running with
monikerRange: '>= aspnetcore-2.1'
ms.author: riande
ms.custom: mvc
ms.date: 10/10/2019
ms.date: 10/26/2019
uid: host-and-deploy/iis/development-time-iis-support
---
# Development-time IIS support in Visual Studio for ASP.NET Core
Expand Down Expand Up @@ -146,7 +146,6 @@ If an untrusted development certificate is used, the browser may require you to
## Additional resources

* [Getting Started with the IIS Manager in IIS](/iis/get-started/getting-started-with-iis/getting-started-with-the-iis-manager-in-iis-7-and-iis-8)
* [Host ASP.NET Core on Windows with IIS](xref:host-and-deploy/iis/index)
* [Introduction to ASP.NET Core Module](xref:host-and-deploy/aspnet-core-module)
* [ASP.NET Core Module configuration reference](xref:host-and-deploy/aspnet-core-module)
* [Enforce HTTPS](xref:security/enforcing-ssl)
* <xref:host-and-deploy/iis/index>
* <xref:host-and-deploy/aspnet-core-module>
* <xref:security/enforcing-ssl>
23 changes: 12 additions & 11 deletions aspnetcore/host-and-deploy/iis/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Learn how to host ASP.NET Core apps on Windows Server Internet Info
monikerRange: '>= aspnetcore-2.1'
ms.author: riande
ms.custom: mvc
ms.date: 10/13/2019
ms.date: 10/26/2019
uid: host-and-deploy/iis/index
---
# Host ASP.NET Core on Windows with IIS
Expand Down Expand Up @@ -123,8 +123,6 @@ The ASP.NET Core Module generates a dynamic port to assign to the backend proces

Calls to `UseUrls` or Kestrel's `Listen` API aren't required when using the module. If `UseUrls` or `Listen` is called, Kestrel listens on the port specified only when running the app without IIS.

For more information on the in-process and out-of-process hosting models, see [ASP.NET Core Module](xref:host-and-deploy/aspnet-core-module) and [ASP.NET Core Module configuration reference](xref:host-and-deploy/aspnet-core-module).

::: moniker-end

For ASP.NET Core Module configuration guidance, see <xref:host-and-deploy/aspnet-core-module>.
Expand Down Expand Up @@ -215,7 +213,7 @@ The *web.config* file configures the [ASP.NET Core Module](xref:host-and-deploy/
<Project Sdk="Microsoft.NET.Sdk.Web">
```

If a *web.config* file isn't present in the project, the file is created with the correct *processPath* and *arguments* to configure the [ASP.NET Core Module](xref:host-and-deploy/aspnet-core-module) and moved to [published output](xref:host-and-deploy/directory-structure).
If a *web.config* file isn't present in the project, the file is created with the correct *processPath* and *arguments* to configure the ASP.NET Core Module and moved to [published output](xref:host-and-deploy/directory-structure).

If a *web.config* file is present in the project, the file is transformed with the correct *processPath* and *arguments* to configure the ASP.NET Core Module and moved to published output. The transformation doesn't modify IIS configuration settings in the file.

Expand All @@ -229,7 +227,7 @@ To prevent the Web SDK from transforming the *web.config* file, use the **\<IsTr
</PropertyGroup>
```

When disabling the Web SDK from transforming the file, the *processPath* and *arguments* should be manually set by the developer. For more information, see the [ASP.NET Core Module configuration reference](xref:host-and-deploy/aspnet-core-module).
When disabling the Web SDK from transforming the file, the *processPath* and *arguments* should be manually set by the developer. For more information, see <xref:host-and-deploy/aspnet-core-module>.

### web.config file location

Expand Down Expand Up @@ -528,7 +526,13 @@ For more information on the in-process hosting model and configuring the ASP.NET

IIS configuration is influenced by the `<system.webServer>` section of *web.config* for IIS scenarios that are functional for ASP.NET Core apps with the ASP.NET Core Module. For example, IIS configuration is functional for dynamic compression. If IIS is configured at the server level to use dynamic compression, the `<urlCompression>` element in the app's *web.config* file can disable it for an ASP.NET Core app.

For more information, see the [configuration reference for \<system.webServer>](/iis/configuration/system.webServer/), [ASP.NET Core Module Configuration Reference](xref:host-and-deploy/aspnet-core-module), and [IIS Modules with ASP.NET Core](xref:host-and-deploy/iis/modules). To set environment variables for individual apps running in isolated app pools (supported for IIS 10.0 or later), see the *AppCmd.exe command* section of the [Environment Variables \<environmentVariables>](/iis/configuration/system.applicationHost/applicationPools/add/environmentVariables/#appcmdexe) topic in the IIS reference documentation.
For more information, see the following topics:

* [Configuration reference for \<system.webServer>](/iis/configuration/system.webServer/)
* <xref:host-and-deploy/aspnet-core-module>
* <xref:host-and-deploy/iis/modules>

To set environment variables for individual apps running in isolated app pools (supported for IIS 10.0 or later), see the *AppCmd.exe command* section of the [Environment Variables \<environmentVariables>](/iis/configuration/system.applicationHost/applicationPools/add/environmentVariables/#appcmdexe) topic in the IIS reference documentation.

## Configuration sections of web.config

Expand Down Expand Up @@ -722,11 +726,8 @@ Learn about IIS in-depth in the IIS documentation.
Learn about .NET Core app deployment models.
[.NET Core application deployment](/dotnet/core/deploying/)

Learn how the ASP.NET Core Module allows the Kestrel web server to use IIS or IIS Express as a reverse proxy server.
[ASP.NET Core Module](xref:host-and-deploy/aspnet-core-module)

Learn how to configure the ASP.NET Core Module for hosting ASP.NET Core apps.
[ASP.NET Core Module configuration reference](xref:host-and-deploy/aspnet-core-module)
Learn about the ASP.NET Core Module, including configuration guidance.
<xref:host-and-deploy/aspnet-core-module>

Learn about the directory structure of published ASP.NET Core apps.
[Directory structure](xref:host-and-deploy/directory-structure)
Expand Down

0 comments on commit 04ebc17

Please sign in to comment.