> ## Documentation Index
> Fetch the complete documentation index at: https://kb.mochahost.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ASP.NET Core activation

If you need to use ASP.NET Core for your website the application pool for your website should configure **web.config** for your website properly.

Here is sample of web.conf file:

````
```xml
<?xml version="1.0" encoding="utf-8"?>
<configuration>

  <system.webServer>

    <handlers>
      <add name="aspNetCore"
           path="*"
           verb="*"
           modules="AspNetCoreModuleV2"
           resourceType="Unspecified" />
    </handlers>

    <aspNetCore processPath="dotnet"
                arguments=".\MyApp.dll"
                stdoutLogEnabled="false"
                stdoutLogFile=".\logs\stdout"
                hostingModel="inprocess" />

  </system.webServer>

</configuration>
```

````

<br />

\`
