From ef93c6eb16d33b8dd4a0fb8962341d9fcc20c666 Mon Sep 17 00:00:00 2001 From: dwalker Date: Tue, 5 May 2026 20:09:18 -0400 Subject: fixed runtime --- dwalker.xyz/Properties/launchSettings.json | 8 ++++---- dwalker.xyz/appsettings.Development.json | 9 --------- dwalker.xyz/appsettings.json | 5 +++-- 3 files changed, 7 insertions(+), 15 deletions(-) delete mode 100644 dwalker.xyz/appsettings.Development.json diff --git a/dwalker.xyz/Properties/launchSettings.json b/dwalker.xyz/Properties/launchSettings.json index c55f6a2..daf9f30 100644 --- a/dwalker.xyz/Properties/launchSettings.json +++ b/dwalker.xyz/Properties/launchSettings.json @@ -1,20 +1,20 @@ { "$schema": "https://json.schemastore.org/launchsettings.json", "profiles": { - "http": { + "https": { "commandName": "Project", "dotnetRunMessages": true, "launchBrowser": true, - "applicationUrl": "http://localhost:0", + "applicationUrl": "https://127.0.0.1:0;http://127.0.0.1:0", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } }, - "https": { + "http": { "commandName": "Project", "dotnetRunMessages": true, "launchBrowser": true, - "applicationUrl": "https://localhost:0;http://localhost:0", + "applicationUrl": "http://127.0.0.1:0", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } diff --git a/dwalker.xyz/appsettings.Development.json b/dwalker.xyz/appsettings.Development.json deleted file mode 100644 index 770d3e9..0000000 --- a/dwalker.xyz/appsettings.Development.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "DetailedErrors": true, - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - } -} diff --git a/dwalker.xyz/appsettings.json b/dwalker.xyz/appsettings.json index 10f68b8..cb15033 100644 --- a/dwalker.xyz/appsettings.json +++ b/dwalker.xyz/appsettings.json @@ -1,9 +1,10 @@ { + "AllowedHosts": "*", + "DetailedErrors": true, "Logging": { "LogLevel": { "Default": "Information", "Microsoft.AspNetCore": "Warning" } - }, - "AllowedHosts": "*" + } } -- cgit v1.2.3