From 36938ed2f8d2620b704a6f3faed8d77609b3b06b Mon Sep 17 00:00:00 2001 From: Michael Green <84688932+michael-j-green@users.noreply.github.com> Date: Fri, 2 Feb 2024 13:00:25 +1100 Subject: [PATCH] Define port 80 as the default port to listen on - overrides new net8.0 default of 8080 * Define port 80 as the default port to listen on - overrides new net8.0 default of 8080 --- gaseous-server/appsettings.Production.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 gaseous-server/appsettings.Production.json diff --git a/gaseous-server/appsettings.Production.json b/gaseous-server/appsettings.Production.json new file mode 100644 index 0000000..44d783a --- /dev/null +++ b/gaseous-server/appsettings.Production.json @@ -0,0 +1,17 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "Kestrel": { + "Endpoints": { + "Production": { + "Url": "http://*:80" + } + } + } +} +