From 16012c7621f534832e0b579320215f7c3d9b271a Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Mon, 14 May 2018 22:05:53 +1000 Subject: [PATCH] Add missing quotation mark to ssl binding command (#6403) --- aspnetcore/fundamentals/servers/weblistener.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/fundamentals/servers/weblistener.md b/aspnetcore/fundamentals/servers/weblistener.md index 5ff4eec409..d17cbf4e4d 100644 --- a/aspnetcore/fundamentals/servers/weblistener.md +++ b/aspnetcore/fundamentals/servers/weblistener.md @@ -143,7 +143,7 @@ netsh http add urlacl url=https://+:443/ user=Users The following example shows how to assign an SSL certificate: ```console -netsh http add sslcert ipport=0.0.0.0:443 certhash=MyCertHash_Here appid={00000000-0000-0000-0000-000000000000}". +netsh http add sslcert ipport=0.0.0.0:443 certhash=MyCertHash_Here appid="{00000000-0000-0000-0000-000000000000}". ``` Here is the official reference documentation: