mongodb default is now 127.0.0.1

This commit is contained in:
rafi1212122
2023-06-04 13:50:04 +07:00
parent 7c19038c3c
commit c7f0c661ed
3 changed files with 6 additions and 4 deletions

View File

@@ -83,7 +83,7 @@ namespace HttpServer.Controllers
return ctx.Response.WriteAsync(JsonConvert.SerializeObject(weatherData));
});
app.Map("/bh3_os/mdk/shield/api/loadConfig", (HttpContext ctx) =>
app.Map("/{game_biz}/mdk/shield/api/loadConfig", (HttpContext ctx) =>
{
return ctx.Response.WriteAsJsonAsync(new
{

View File

@@ -1,6 +1,7 @@
using Common;
using Common.Utils;
using HttpServer.Controllers;
using Microsoft.Extensions.FileProviders;
namespace HttpServer
{
@@ -23,6 +24,7 @@ namespace HttpServer
AccountController.AddHandlers(app);
ConfigController.AddHandlers(app);
app.UseStaticFiles(new StaticFileOptions() { FileProvider = new PhysicalFileProvider(Path.Combine(Directory.GetCurrentDirectory(), "wwwroot")) });
app.UseMiddleware<RequestLoggingMiddleware>();
c.Log($"HTTP server started on port 80 & 443"); // A lie
app.Run();