Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
239 changed files with 10409 additions and 98 deletions
Showing only changes of commit ab660f69c8 - Show all commits

View File

@ -69,7 +69,7 @@ public class Program
builder.WebHost.ConfigureKestrel(options => builder.WebHost.ConfigureKestrel(options =>
{ {
options.ListenLocalhost( options.ListenAnyIP(
int.Parse(builder.Configuration.GetValue<string>("INTERNAL_PORT") ?? "8080")); int.Parse(builder.Configuration.GetValue<string>("INTERNAL_PORT") ?? "8080"));
}); });