Bind API url for all entries #32

Merged
Egamorf merged 3 commits from fix/port-binding into main 2025-04-28 21:16:30 +02:00
Showing only changes of commit 9d5eed78a4 - Show all commits

View File

@@ -94,7 +94,7 @@ services.AddCors(option => option.AddDefaultPolicy(policy =>
.AllowAnyHeader() .AllowAnyHeader()
.WithMethods("GET", "POST", "PUT", "DELETE"))); .WithMethods("GET", "POST", "PUT", "DELETE")));
builder.WebHost.UseUrls($"http://127.0.0.1:{GlobalConstants.API_PORT}"); builder.WebHost.UseUrls($"http://0.0.0.0:{GlobalConstants.API_PORT}");
var app = builder.Build(); var app = builder.Build();