From ac8fdabe5df456e8d46612e399861c68c1d55ac5 Mon Sep 17 00:00:00 2001 From: rafsanulhasan Date: Sat, 1 Sep 2018 01:56:09 +0600 Subject: [PATCH] 1. Specified SSL port 2. Use 64bit IIS Express Bitness 3. Specified applicationUrl for Kestrel startup --- src/Web/WebMVC/Properties/launchSettings.json | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/Web/WebMVC/Properties/launchSettings.json b/src/Web/WebMVC/Properties/launchSettings.json index bf529db40..813c84de0 100644 --- a/src/Web/WebMVC/Properties/launchSettings.json +++ b/src/Web/WebMVC/Properties/launchSettings.json @@ -4,23 +4,25 @@ "anonymousAuthentication": true, "iisExpress": { "applicationUrl": "http://localhost:5100", - "sslPort": 0 + "sslPort": 4100 } }, "profiles": { "IIS Express": { "commandName": "IISExpress", + "launchBrowser": true, "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" - } + }, + "use64Bit": true }, "Microsoft.eShopOnContainers.WebMVC": { "commandName": "Project", - "launchBrowser": true, - "launchUrl": "http://localhost:5000", + "launchUrl": "/", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" - } + }, + "applicationUrl": "https://localhost:4001;http://localhost:5001" } } } \ No newline at end of file