Compare commits

..

No commits in common. "ddce0f5ae0b399b5c530eda4b5df1c5bc8d9efb7" and "731132b517fa3107e460f1960ff2c85f9f6b93ad" have entirely different histories.

View File

@ -163,6 +163,7 @@ builder.Logging.ClearProviders();
builder.Logging.AddConsole(); builder.Logging.AddConsole();
if (builder.Environment.IsDevelopment()) { if (builder.Environment.IsDevelopment()) {
builder.Logging.SetMinimumLevel(LogLevel.Trace); builder.Logging.SetMinimumLevel(LogLevel.Trace);
builder.WebHost.UseUrls("http://0.0.0.0:7004");
} }
else else
{ {
@ -170,9 +171,6 @@ else
} }
builder.WebHost.UseUrls("http://0.0.0.0:7004");
// 로컬 테스트 위한 부분 (올릴때는 꺼두기) // 로컬 테스트 위한 부분 (올릴때는 꺼두기)
// builder.WebHost.UseUrls("http://0.0.0.0:5144"); // builder.WebHost.UseUrls("http://0.0.0.0:5144");
@ -181,7 +179,6 @@ builder.WebHost.UseUrls("http://0.0.0.0:7004");
var app = builder.Build(); var app = builder.Build();
string staticRoot; string staticRoot;
if (app.Environment.IsDevelopment()) if (app.Environment.IsDevelopment())
{ {
// app.UseSwagger(); // app.UseSwagger();