From 11ced33e3fed4dd21db3a6d5a4aac6b225ff7dae Mon Sep 17 00:00:00 2001 From: ivancheahhh Date: Thu, 4 Jan 2024 17:27:35 -0700 Subject: [PATCH] added Kestrel config in appsettings. --- appsettings.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/appsettings.json b/appsettings.json index 6252e11..17edf80 100644 --- a/appsettings.json +++ b/appsettings.json @@ -5,6 +5,16 @@ "Microsoft.AspNetCore": "Warning" } }, + "Kestrel": { + "Endpoints": { + "http": { + "Url": "http://localhost:5000" + }, + "https": { + "Url": "https://localhost:43000" + } + } + }, "AllowedHosts": "*", "UseDarkMode": false, "EnableCsvImports": true,