From 2458d0c07a1cb5e978ec615e0505db5708af53a1 Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 9 Apr 2026 14:19:36 +0200 Subject: [PATCH] Configure Kestrel endpoint and hosting options in settings Added "UseWindowsService" and "UseKestrelConfig" flags to appsettings.json. Defined a custom Kestrel HTTP endpoint at http://localhost:1111 to control how the application is hosted and served. --- EnvelopeGenerator.ServiceHost/appsettings.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/EnvelopeGenerator.ServiceHost/appsettings.json b/EnvelopeGenerator.ServiceHost/appsettings.json index 45da6a77..9373f8f9 100644 --- a/EnvelopeGenerator.ServiceHost/appsettings.json +++ b/EnvelopeGenerator.ServiceHost/appsettings.json @@ -12,5 +12,14 @@ "SupportedCultures": [ "de-DE", "en-US" ], "ConnectionStrings": { "Default": "Server=SDD-VMP04-SQL17\\DD_DEVELOP01;Database=DD_ECM;User Id=sa;Password=dd;Encrypt=false;TrustServerCertificate=True;" + }, + "UseWindowsService": false, + "UseKestrelConfig": false, + "Kestrel": { + "Endpoints": { + "Http": { + "Url": "http://localhost:1111" + } + } } } \ No newline at end of file