From f93c93002fec0088a7040cd53f31fd5b5a62fea7 Mon Sep 17 00:00:00 2001 From: Tom Dykstra Date: Fri, 3 Mar 2017 13:36:28 -0800 Subject: [PATCH] fix link (#2880) * fix link * fix link --- aspnetcore/fundamentals/servers/kestrel.md | 2 +- aspnetcore/fundamentals/servers/weblistener.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/fundamentals/servers/kestrel.md b/aspnetcore/fundamentals/servers/kestrel.md index 8e5bc5dc9d..94018737b9 100644 --- a/aspnetcore/fundamentals/servers/kestrel.md +++ b/aspnetcore/fundamentals/servers/kestrel.md @@ -17,7 +17,7 @@ ms.custom: H1Hack27Feb2017 By [Tom Dykstra](http://github.com/tdykstra), [Chris Ross](https://github.com/Tratcher), and [Stephen Halter](https://twitter.com/halter73) -Kestrel is a cross-platform [web server for ASP.NET Core](overview.md) based on [libuv](https://github.com/libuv/libuv), a cross-platform asynchronous I/O library. Kestrel is the web server that is included by default in ASP.NET Core new project templates. +Kestrel is a cross-platform [web server for ASP.NET Core](index.md) based on [libuv](https://github.com/libuv/libuv), a cross-platform asynchronous I/O library. Kestrel is the web server that is included by default in ASP.NET Core new project templates. Kestrel supports the following features: diff --git a/aspnetcore/fundamentals/servers/weblistener.md b/aspnetcore/fundamentals/servers/weblistener.md index ccb0e60e1e..de4397e3a7 100644 --- a/aspnetcore/fundamentals/servers/weblistener.md +++ b/aspnetcore/fundamentals/servers/weblistener.md @@ -16,7 +16,7 @@ uid: fundamentals/servers/weblistener By [Tom Dykstra](http://github.com/tdykstra) and [Chris Ross](https://github.com/Tratcher) -WebListener is a [web server for ASP.NET Core](overview.md) that runs only on Windows. It's built on the [Http.Sys kernel mode driver](https://msdn.microsoft.com/en-us/library/windows/desktop/aa364510.aspx). WebListener is an alternative to [Kestrel](kestrel.md) that can be used for direct connection to the Internet without relying on IIS as a reverse proxy server. In fact, **WebListener can't be used with IIS or IIS Express, as it isn't compatible with the [ASP.NET Core Module](aspnet-core-module.md).** +WebListener is a [web server for ASP.NET Core](index.md) that runs only on Windows. It's built on the [Http.Sys kernel mode driver](https://msdn.microsoft.com/en-us/library/windows/desktop/aa364510.aspx). WebListener is an alternative to [Kestrel](kestrel.md) that can be used for direct connection to the Internet without relying on IIS as a reverse proxy server. In fact, **WebListener can't be used with IIS or IIS Express, as it isn't compatible with the [ASP.NET Core Module](aspnet-core-module.md).** Although WebListener was developed for ASP.NET Core, it can be used directly in any .NET Core or .NET Framework application via the [Microsoft.Net.Http.Server](https://www.nuget.org/packages/Microsoft.Net.Http.Server/) NuGet package.