42 KiB
title | author | description | ms.author | ms.custom | ms.date | uid |
---|---|---|---|---|---|---|
Host ASP.NET Core on Windows with IIS | guardrex | Learn how to host ASP.NET Core apps on Windows Server Internet Information Services (IIS). | riande | mvc | 12/18/2018 | host-and-deploy/iis/index |
Host ASP.NET Core on Windows with IIS
By Luke Latham
Install the .NET Core Hosting Bundle
Supported operating systems
The following operating systems are supported:
- Windows 7 or later
- Windows Server 2008 R2 or later
HTTP.sys server (formerly called WebListener) doesn't work in a reverse proxy configuration with IIS. Use the Kestrel server.
For information on hosting in Azure, see xref:host-and-deploy/azure-apps/index.
Supported platforms
Apps published for 32-bit (x86) and 64-bit (x64) deployment are supported. Deploy a 32-bit app unless the app:
- Requires the larger virtual memory address space available to a 64-bit app.
- Requires the larger IIS stack size.
- Has 64-bit native dependencies.
Application configuration
Enable the IISIntegration components
::: moniker range=">= aspnetcore-2.1"
A typical Program.cs calls xref:Microsoft.AspNetCore.WebHost.CreateDefaultBuilder* to begin setting up a host:
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
...
::: moniker-end
::: moniker range="= aspnetcore-2.0"
A typical Program.cs calls xref:Microsoft.AspNetCore.WebHost.CreateDefaultBuilder* to begin setting up a host:
public static IWebHost BuildWebHost(string[] args) =>
WebHost.CreateDefaultBuilder(args)
...
::: moniker-end
::: moniker range=">= aspnetcore-2.2"
In-process hosting model
CreateDefaultBuilder
calls the UseIIS
method to boot the CoreCLR and host the app inside of the IIS worker process (w3wp.exe or iisexpress.exe). Performance tests indicate that hosting a .NET Core app in-process delivers significantly higher request throughput compared to hosting the app out-of-process and proxying requests to Kestrel server.
Out-of-process hosting model
For out-of-process hosting with IIS, CreateDefaultBuilder
configures Kestrel server as the web server and enables IIS Integration by configuring the base path and port for the ASP.NET Core Module.
The ASP.NET Core Module generates a dynamic port to assign to the backend process. CreateDefaultBuilder
calls the xref:Microsoft.AspNetCore.Hosting.WebHostBuilderIISExtensions.UseIISIntegration* method. UseIISIntegration
configures Kestrel to listen on the dynamic port at the localhost IP address (127.0.0.1
). If the dynamic port is 1234, Kestrel listens at 127.0.0.1:1234
. This configuration replaces other URL configurations provided by:
UseUrls
- Kestrel's Listen API
- Configuration (or command-line --urls option)
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 ports 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 and ASP.NET Core Module configuration reference.
::: moniker-end
::: moniker range="= aspnetcore-2.1"
CreateDefaultBuilder
configures Kestrel server as the web server and enables IIS Integration by configuring the base path and port for the ASP.NET Core Module.
The ASP.NET Core Module generates a dynamic port to assign to the backend process. CreateDefaultBuilder
calls the UseIISIntegration method. UseIISIntegration
configures Kestrel to listen on the dynamic port at the localhost IP address (127.0.0.1
). If the dynamic port is 1234, Kestrel listens at 127.0.0.1:1234
. This configuration replaces other URL configurations provided by:
UseUrls
- Kestrel's Listen API
- Configuration (or command-line --urls option)
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.
::: moniker-end
::: moniker range="= aspnetcore-2.0"
CreateDefaultBuilder
configures Kestrel server as the web server and enables IIS Integration by configuring the base path and port for the ASP.NET Core Module.
The ASP.NET Core Module generates a dynamic port to assign to the backend process. CreateDefaultBuilder
calls the UseIISIntegration method. UseIISIntegration
configures Kestrel to listen on the dynamic port at the localhost IP address (localhost
). If the dynamic port is 1234, Kestrel listens at localhost:1234
. This configuration replaces other URL configurations provided by:
UseUrls
- Kestrel's Listen API
- Configuration (or command-line --urls option)
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.
::: moniker-end
::: moniker range="< aspnetcore-2.0"
Include a dependency on the Microsoft.AspNetCore.Server.IISIntegration package in the app's dependencies. Use IIS Integration middleware by adding the UseIISIntegration extension method to WebHostBuilder:
var host = new WebHostBuilder()
.UseKestrel()
.UseIISIntegration()
...
Both UseKestrel and UseIISIntegration are required. Code calling UseIISIntegration
doesn't affect code portability. If the app isn't run behind IIS (for example, the app is run directly on Kestrel), UseIISIntegration
doesn't operate.
The ASP.NET Core Module generates a dynamic port to assign to the backend process. UseIISIntegration
configures Kestrel to listen on the dynamic port at the localhost IP address (localhost
). If the dynamic port is 1234, Kestrel listens at localhost:1234
. This configuration replaces other URL configurations provided by:
UseUrls
- Configuration (or command-line --urls option)
A call to UseUrls
isn't required when using the module. If UseUrls
is called, Kestrel listens on the port specified only when running the app without IIS.
If UseUrls
is called in an ASP.NET Core 1.0 app, call it before calling UseIISIntegration
so that the module-configured port isn't overwritten. This calling order isn't required with ASP.NET Core 1.1 because the module setting overrides UseUrls
.
::: moniker-end
For more information on hosting, see Host in ASP.NET Core.
IIS options
::: moniker range=">= aspnetcore-2.2"
In-process hosting model
To configure IIS Server options, include a service configuration for IISServerOptions in ConfigureServices. The following example disables AutomaticAuthentication:
services.Configure<IISServerOptions>(options =>
{
options.AutomaticAuthentication = false;
});
Option | Default | Setting |
---|---|---|
AutomaticAuthentication |
true |
If true , IIS Server sets the HttpContext.User authenticated by Windows Authentication. If false , the server only provides an identity for HttpContext.User and responds to challenges when explicitly requested by the AuthenticationScheme . Windows Authentication must be enabled in IIS for AutomaticAuthentication to function. For more information, see Windows Authentication. |
AuthenticationDisplayName |
null |
Sets the display name shown to users on login pages. |
Out-of-process hosting model
::: moniker-end
To configure IIS options, include a service configuration for IISOptions in ConfigureServices. The following example prevents the app from populating HttpContext.Connection.ClientCertificate
:
services.Configure<IISOptions>(options =>
{
options.ForwardClientCertificate = false;
});
Option | Default | Setting |
---|---|---|
AutomaticAuthentication |
true |
If true , IIS Integration Middleware sets the HttpContext.User authenticated by Windows Authentication. If false , the middleware only provides an identity for HttpContext.User and responds to challenges when explicitly requested by the AuthenticationScheme . Windows Authentication must be enabled in IIS for AutomaticAuthentication to function. For more information, see the Windows Authentication topic. |
AuthenticationDisplayName |
null |
Sets the display name shown to users on login pages. |
ForwardClientCertificate |
true |
If true and the MS-ASPNETCORE-CLIENTCERT request header is present, the HttpContext.Connection.ClientCertificate is populated. |
Proxy server and load balancer scenarios
The IIS Integration Middleware, which configures Forwarded Headers Middleware, and the ASP.NET Core Module are configured to forward the scheme (HTTP/HTTPS) and the remote IP address where the request originated. Additional configuration might be required for apps hosted behind additional proxy servers and load balancers. For more information, see Configure ASP.NET Core to work with proxy servers and load balancers.
web.config file
The web.config file configures the ASP.NET Core Module. Creating, transforming, and publishing the web.config file is handled by an MSBuild target (_TransformWebConfig
) when the project is published. This target is present in the Web SDK targets (Microsoft.NET.Sdk.Web
). The SDK is set at the top of the project file:
<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 and moved to published output.
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.
The web.config file may provide additional IIS configuration settings that control active IIS modules. For information on IIS modules that are capable of processing requests with ASP.NET Core apps, see the IIS modules topic.
To prevent the Web SDK from transforming the web.config file, use the <IsTransformWebConfigDisabled> property in the project file:
<PropertyGroup>
<IsTransformWebConfigDisabled>true</IsTransformWebConfigDisabled>
</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.
web.config file location
In order to set up the ASP.NET Core Module correctly, the web.config file must be present at the content root path (typically the app base path) of the deployed app. This is the same location as the website physical path provided to IIS. The web.config file is required at the root of the app to enable the publishing of multiple apps using Web Deploy.
Sensitive files exist on the app's physical path, such as <assembly>.runtimeconfig.json, <assembly>.xml (XML Documentation comments), and <assembly>.deps.json. When the web.config file is present and and the site starts normally, IIS doesn't serve these sensitive files if they're requested. If the web.config file is missing, incorrectly named, or unable to configure the site for normal startup, IIS may serve sensitive files publicly.
The web.config file must be present in the deployment at all times, correctly named, and able to configure the site for normal start up. Never remove the web.config file from a production deployment.
IIS configuration
Windows Server operating systems
Enable the Web Server (IIS) server role and establish role services.
-
Use the Add Roles and Features wizard from the Manage menu or the link in Server Manager. On the Server Roles step, check the box for Web Server (IIS).
-
After the Features step, the Role services step loads for Web Server (IIS). Select the IIS role services desired or accept the default role services provided.
Windows Authentication (Optional)
To enable Windows Authentication, expand the following nodes: Web Server > Security. Select the Windows Authentication feature. For more information, see Windows Authentication <windowsAuthentication> and Configure Windows authentication.WebSockets (Optional)
WebSockets is supported with ASP.NET Core 1.1 or later. To enable WebSockets, expand the following nodes: Web Server > Application Development. Select the WebSocket Protocol feature. For more information, see WebSockets. -
Proceed through the Confirmation step to install the web server role and services. A server/IIS restart isn't required after installing the Web Server (IIS) role.
Windows desktop operating systems
Enable the IIS Management Console and World Wide Web Services.
-
Navigate to Control Panel > Programs > Programs and Features > Turn Windows features on or off (left side of the screen).
-
Open the Internet Information Services node. Open the Web Management Tools node.
-
Check the box for IIS Management Console.
-
Check the box for World Wide Web Services.
-
Accept the default features for World Wide Web Services or customize the IIS features.
Windows Authentication (Optional)
To enable Windows Authentication, expand the following nodes: World Wide Web Services > Security. Select the Windows Authentication feature. For more information, see Windows Authentication <windowsAuthentication> and Configure Windows authentication.WebSockets (Optional)
WebSockets is supported with ASP.NET Core 1.1 or later. To enable WebSockets, expand the following nodes: World Wide Web Services > Application Development Features. Select the WebSocket Protocol feature. For more information, see WebSockets. -
If the IIS installation requires a restart, restart the system.
Install the .NET Core Hosting Bundle
Install the .NET Core Hosting Bundle on the hosting system. The bundle installs the .NET Core Runtime, .NET Core Library, and the ASP.NET Core Module. The module allows ASP.NET Core apps to run behind IIS. If the system doesn't have an Internet connection, obtain and install the Microsoft Visual C++ 2015 Redistributable before installing the .NET Core Hosting Bundle.
[!IMPORTANT] If the Hosting Bundle is installed before IIS, the bundle installation must be repaired. Run the Hosting Bundle installer again after installing IIS.
Direct download (current version)
Download the installer using the following link:
Current .NET Core Hosting Bundle installer (direct download)
Earlier versions of the installer
To obtain an earlier version of the installer:
- Navigate to the .NET download archives.
- Under .NET Core, select the .NET Core version.
- In the Run apps - Runtime column, find the row of the .NET Core runtime version desired.
- Download the installer using the Runtime & Hosting Bundle link.
[!WARNING] Some installers contain release versions that have reached their end of life (EOL) and are no longer supported by Microsoft. For more information, see the support policy.
Install the Hosting Bundle
-
Run the installer on the server. The following switches are available when running the installer from an administrator command prompt:
OPT_NO_ANCM=1
– Skip installing the ASP.NET Core Module.OPT_NO_RUNTIME=1
– Skip installing the .NET Core runtime.OPT_NO_SHAREDFX=1
– Skip installing the ASP.NET Shared Framework (ASP.NET runtime).OPT_NO_X86=1
– Skip installing x86 runtimes. Use this switch when you know that you won't be hosting 32-bit apps. If there's any chance that you will host both 32-bit and 64-bit apps in the future, don't use this switch and install both runtimes.
-
Restart the system or execute net stop was /y followed by net start w3svc from a command prompt. Restarting IIS picks up a change to the system PATH, which is an environment variable, made by the installer.
If the Windows Hosting Bundle installer detects that IIS requires a reset in order to complete installation, the installer resets IIS. If the installer triggers an IIS reset, all of the IIS app pools and websites are restarted.
[!NOTE] For information on IIS Shared Configuration, see ASP.NET Core Module with IIS Shared Configuration.
Install Web Deploy when publishing with Visual Studio
When deploying apps to servers with Web Deploy, install the latest version of Web Deploy on the server. To install Web Deploy, use the Web Platform Installer (WebPI) or obtain an installer directly from the Microsoft Download Center. The preferred method is to use WebPI. WebPI offers a standalone setup and a configuration for hosting providers.
Create the IIS site
-
On the hosting system, create a folder to contain the app's published folders and files. An app's deployment layout is described in the Directory Structure topic.
-
Within the new folder, create a logs folder to hold ASP.NET Core Module stdout logs when stdout logging is enabled. If the app is deployed with a logs folder in the payload, skip this step. For instructions on how to enable MSBuild to create the logs folder automatically when the project is built locally, see the Directory structure topic.
[!IMPORTANT] Only use the stdout log to troubleshoot app startup failures. Never use stdout logging for routine app logging. There's no limit on log file size or the number of log files created. The app pool must have write access to the location where the logs are written. All of the folders on the path to the log location must exist. For more information on the stdout log, see Log creation and redirection. For information on logging in an ASP.NET Core app, see the Logging topic.
-
In IIS Manager, open the server's node in the Connections panel. Right-click the Sites folder. Select Add Website from the contextual menu.
-
Provide a Site name and set the Physical path to the app's deployment folder. Provide the Binding configuration and create the website by selecting OK:
[!WARNING] Top-level wildcard bindings (
http://*:80/
andhttp://+:80
) should not be used. Top-level wildcard bindings can open up your app to security vulnerabilities. This applies to both strong and weak wildcards. Use explicit host names rather than wildcards. Subdomain wildcard binding (for example,*.mysub.com
) doesn't have this security risk if you control the entire parent domain (as opposed to*.com
, which is vulnerable). See rfc7230 section-5.4 for more information. -
Under the server's node, select Application Pools.
-
Right-click the site's app pool and select Basic Settings from the contextual menu.
-
In the Edit Application Pool window, set the .NET CLR version to No Managed Code:
ASP.NET Core runs in a separate process and manages the runtime. ASP.NET Core doesn't rely on loading the desktop CLR. Setting the .NET CLR version to No Managed Code is optional.
-
ASP.NET Core 2.2 or later: For a 64-bit (x64) self-contained deployment that uses the in-process hosting model, disable the app pool for 32-bit (x86) processes.
In the Actions sidebar of IIS Manager's Application Pools, select Set Application Pool Defaults or Advanced Settings. Locate Enable 32-Bit Applications and set the value to
False
. This setting doesn't affect apps deployed for out-of-process hosting. -
Confirm the process model identity has the proper permissions.
If the default identity of the app pool (Process Model > Identity) is changed from ApplicationPoolIdentity to another identity, verify that the new identity has the required permissions to access the app's folder, database, and other required resources. For example, the app pool requires read and write access to folders where the app reads and writes files.
Windows Authentication configuration (Optional)
For more information, see Configure Windows authentication.
Deploy the app
Deploy the app to the folder created on the hosting system. Web Deploy is the recommended mechanism for deployment.
Web Deploy with Visual Studio
See the Visual Studio publish profiles for ASP.NET Core app deployment topic to learn how to create a publish profile for use with Web Deploy. If the hosting provider provides a Publish Profile or support for creating one, download their profile and import it using the Visual Studio Publish dialog.
Web Deploy outside of Visual Studio
Web Deploy can also be used outside of Visual Studio from the command line. For more information, see Web Deployment Tool.
Alternatives to Web Deploy
Use any of several methods to move the app to the hosting system, such as manual copy, Xcopy, Robocopy, or PowerShell.
For more information on ASP.NET Core deployment to IIS, see the Deployment resources for IIS administrators section.
Browse the website
Locked deployment files
Files in the deployment folder are locked when the app is running. Locked files can't be overwritten during deployment. To release locked files in a deployment, stop the app pool using one of the following approaches:
-
Use Web Deploy and reference
Microsoft.NET.Sdk.Web
in the project file. An app_offline.htm file is placed at the root of the web app directory. When the file is present, the ASP.NET Core Module gracefully shuts down the app and serves the app_offline.htm file during the deployment. For more information, see the ASP.NET Core Module configuration reference. -
Manually stop the app pool in the IIS Manager on the server.
-
Use PowerShell to drop app_offline.html (requires PowerShell 5 or later):
$pathToApp = 'PATH_TO_APP' # Stop the AppPool New-Item -Path $pathToApp app_offline.htm # Provide script commands here to deploy the app # Restart the AppPool Remove-Item -Path $pathToApp app_offline.htm
Data protection
The ASP.NET Core Data Protection stack is used by several ASP.NET Core middlewares, including middleware used in authentication. Even if Data Protection APIs aren't called by user code, data protection should be configured with a deployment script or in user code to create a persistent cryptographic key store. If data protection isn't configured, the keys are held in memory and discarded when the app restarts.
If the key ring is stored in memory when the app restarts:
- All cookie-based authentication tokens are invalidated.
- Users are required to sign in again on their next request.
- Any data protected with the key ring can no longer be decrypted. This may include CSRF tokens and ASP.NET Core MVC TempData cookies.
To configure data protection under IIS to persist the key ring, use one of the following approaches:
-
Create Data Protection Registry Keys
Data protection keys used by ASP.NET Core apps are stored in the registry external to the apps. To persist the keys for a given app, create registry keys for the app pool.
For standalone, non-webfarm IIS installations, the Data Protection Provision-AutoGenKeys.ps1 PowerShell script can be used for each app pool used with an ASP.NET Core app. This script creates a registry key in the HKLM registry that's accessible only to the worker process account of the app's app pool. Keys are encrypted at rest using DPAPI with a machine-wide key.
In web farm scenarios, an app can be configured to use a UNC path to store its data protection key ring. By default, the data protection keys aren't encrypted. Ensure that the file permissions for the network share are limited to the Windows account the app runs under. An X509 certificate can be used to protect keys at rest. Consider a mechanism to allow users to upload certificates: Place certificates into the user's trusted certificate store and ensure they're available on all machines where the user's app runs. See Configure ASP.NET Core Data Protection for details.
-
Configure the IIS Application Pool to load the user profile
This setting is in the Process Model section under the Advanced Settings for the app pool. Set Load User Profile to
True
. This stores keys under the user profile directory and protects them using DPAPI with a key specific to the user account used by the app pool. -
Use the file system as a key ring store
Adjust the app code to use the file system as a key ring store. Use an X509 certificate to protect the key ring and ensure the certificate is a trusted certificate. If the certificate is self-signed, place the certificate in the Trusted Root store.
When using IIS in a web farm:
- Use a file share that all machines can access.
- Deploy an X509 certificate to each machine. Configure data protection in code.
-
Set a machine-wide policy for data protection
The data protection system has limited support for setting a default machine-wide policy for all apps that consume the Data Protection APIs. For more information, see xref:security/data-protection/introduction.
Virtual Directories
IIS Virtual Directories aren't supported with ASP.NET Core apps. An app can be hosted as a sub-application.
Sub-applications
An ASP.NET Core app can be hosted as an IIS sub-application (sub-app). The sub-app's path becomes part of the root app's URL.
::: moniker range="< aspnetcore-2.2"
A sub-app shouldn't include the ASP.NET Core Module as a handler. If the module is added as a handler in a sub-app's web.config file, a 500.19 Internal Server Error referencing the faulty config file is received when attempting to browse the sub-app.
The following example shows a published web.config file for an ASP.NET Core sub-app:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<aspNetCore processPath="dotnet"
arguments=".\MyApp.dll"
stdoutLogEnabled="false"
stdoutLogFile=".\logs\stdout" />
</system.webServer>
</configuration>
When hosting a non-ASP.NET Core sub-app underneath an ASP.NET Core app, explicitly remove the inherited handler in the sub-app's web.config file:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<remove name="aspNetCore" />
</handlers>
<aspNetCore processPath="dotnet"
arguments=".\MyApp.dll"
stdoutLogEnabled="false"
stdoutLogFile=".\logs\stdout" />
</system.webServer>
</configuration>
::: moniker-end
Static asset links within the sub-app should use tilde-slash (~/
) notation. Tilde-slash notation triggers a Tag Helper to prepend the sub-app's pathbase to the rendered relative link. For a sub-app at /subapp_path
, an image linked with src="~/image.png"
is rendered as src="/subapp_path/image.png"
. The root app's Static File Middleware doesn't process the static file request. The request is processed by the sub-app's Static File Middleware.
If a static asset's src
attribute is set to an absolute path (for example, src="/image.png"
), the link is rendered without the sub-app's pathbase. The root app's Static File Middleware attempts to serve the asset from the root app's webroot, which results in a 404 - Not Found response unless the static asset is available from the root app.
To host an ASP.NET Core app as a sub-app under another ASP.NET Core app:
-
Establish an app pool for the sub-app. Set the .NET CLR Version to No Managed Code.
-
Add the root site in IIS Manager with the sub-app in a folder under the root site.
-
Right-click the sub-app folder in IIS Manager and select Convert to Application.
-
In the Add Application dialog, use the Select button for the Application Pool to assign the app pool that you created for the sub-app. Select OK.
The assignment of a separate app pool to the sub-app is a requirement when using the in-process hosting model.
For more information on the in-process hosting model and configuring the ASP.NET Core Module, see xref:host-and-deploy/aspnet-core-module and xref:host-and-deploy/aspnet-core-module.
Configuration of IIS with web.config
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>, ASP.NET Core Module Configuration Reference, and IIS Modules with ASP.NET Core. 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> topic in the IIS reference documentation.
Configuration sections of web.config
Configuration sections of ASP.NET 4.x apps in web.config aren't used by ASP.NET Core apps for configuration:
<system.web>
<appSettings>
<connectionStrings>
<location>
ASP.NET Core apps are configured using other configuration providers. For more information, see Configuration.
Application Pools
::: moniker range=">= aspnetcore-2.2"
App pool isolation is determined by the hosting model:
- In-process hosting – Apps are required to run in separate app pools.
- Out-of-process hosting – We recommend isolating the apps from each other by running each app in its own app pool.
The IIS Add Website dialog defaults to a single app pool per app. When a Site name is provided, the text is automatically transferred to the Application pool textbox. A new app pool is created using the site name when the site is added.
::: moniker-end
::: moniker range="< aspnetcore-2.2"
When hosting multiple websites on a server, we recommend isolating the apps from each other by running each app in its own app pool. The IIS Add Website dialog defaults to this configuration. When a Site name is provided, the text is automatically transferred to the Application pool textbox. A new app pool is created using the site name when the site is added.
::: moniker-end
Application Pool Identity
An app pool identity account allows an app to run under a unique account without having to create and manage domains or local accounts. On IIS 8.0 or later, the IIS Admin Worker Process (WAS) creates a virtual account with the name of the new app pool and runs the app pool's worker processes under this account by default. In the IIS Management Console under Advanced Settings for the app pool, ensure that the Identity is set to use ApplicationPoolIdentity:
The IIS management process creates a secure identifier with the name of the app pool in the Windows Security System. Resources can be secured using this identity. However, this identity isn't a real user account and doesn't show up in the Windows User Management Console.
If the IIS worker process requires elevated access to the app, modify the Access Control List (ACL) for the directory containing the app:
-
Open Windows Explorer and navigate to the directory.
-
Right-click on the directory and select Properties.
-
Under the Security tab, select the Edit button and then the Add button.
-
Select the Locations button and make sure the system is selected.
-
Enter IIS AppPool\<app_pool_name> in Enter the object names to select area. Select the Check Names button. For the DefaultAppPool check the names using IIS AppPool\DefaultAppPool. When the Check Names button is selected, a value of DefaultAppPool is indicated in the object names area. It isn't possible to enter the app pool name directly into the object names area. Use the IIS AppPool\<app_pool_name> format when checking for the object name.
-
Select OK.
-
Read & execute permissions should be granted by default. Provide additional permissions as needed.
Access can also be granted at a command prompt using the ICACLS tool. Using the DefaultAppPool as an example, the following command is used:
ICACLS C:\sites\MyWebApp /grant "IIS AppPool\DefaultAppPool":F
For more information, see the icacls topic.
HTTP/2 support
::: moniker range=">= aspnetcore-2.2"
HTTP/2 is supported with ASP.NET Core in the following IIS deployment scenarios:
- In-process
- Windows Server 2016/Windows 10 or later; IIS 10 or later
- TLS 1.2 or later connection
- Out-of-process
- Windows Server 2016/Windows 10 or later; IIS 10 or later
- Public-facing edge server connections use HTTP/2, but the reverse proxy connection to the Kestrel server uses HTTP/1.1.
- TLS 1.2 or later connection
For an in-process deployment when an HTTP/2 connection is established, HttpRequest.Protocol reports HTTP/2
. For an out-of-process deployment when an HTTP/2 connection is established, HttpRequest.Protocol reports HTTP/1.1
.
For more information on the in-process and out-of-process hosting models, see the xref:host-and-deploy/aspnet-core-module topic and the xref:host-and-deploy/aspnet-core-module.
::: moniker-end
::: moniker range="< aspnetcore-2.2"
HTTP/2 is supported for out-of-process deployments that meet the following base requirements:
- Windows Server 2016/Windows 10 or later; IIS 10 or later
- Public-facing edge server connections use HTTP/2, but the reverse proxy connection to the Kestrel server uses HTTP/1.1.
- Target framework: Not applicable to out-of-process deployments, since the HTTP/2 connection is handled entirely by IIS.
- TLS 1.2 or later connection
If an HTTP/2 connection is established, HttpRequest.Protocol reports HTTP/1.1
.
::: moniker-end
HTTP/2 is enabled by default. Connections fall back to HTTP/1.1 if an HTTP/2 connection isn't established. For more information on HTTP/2 configuration with IIS deployments, see HTTP/2 on IIS.
Deployment resources for IIS administrators
Learn about IIS in-depth in the IIS documentation.
IIS documentation
Learn about .NET Core app deployment models.
.NET Core application deployment
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
Learn how to configure the ASP.NET Core Module for hosting ASP.NET Core apps.
ASP.NET Core Module configuration reference
Learn about the directory structure of published ASP.NET Core apps.
Directory structure
Discover active and inactive IIS modules for ASP.NET Core apps and how to manage IIS modules.
IIS modules
Learn how to diagnose problems with IIS deployments of ASP.NET Core apps.
Troubleshoot
Distinguish common errors when hosting ASP.NET Core apps on IIS.
Common errors reference for Azure App Service and IIS