From 57a5c847b01a01b380472c758f7ec81b3067d63c Mon Sep 17 00:00:00 2001 From: Ben Munro Date: Tue, 22 Nov 2016 23:29:59 +1300 Subject: [PATCH] Correct reference to UseHttps extension method --- aspnetcore/fundamentals/servers/kestrel.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/fundamentals/servers/kestrel.md b/aspnetcore/fundamentals/servers/kestrel.md index 524995f9db..c051343403 100644 --- a/aspnetcore/fundamentals/servers/kestrel.md +++ b/aspnetcore/fundamentals/servers/kestrel.md @@ -113,7 +113,7 @@ When you specify port 0, you can use [`IServerAddressesFeature`](http://docs.as ### URL prefixes for SSL -Be sure to include URL prefixes with `https:` if you call the `UseSSL` extension method, as shown below. +Be sure to include URL prefixes with `https:` if you call the `UseHttps` extension method, as shown below. ```csharp var host = new WebHostBuilder()