fix: map Nginx 8281 to host 8080 to restore Apache proxy connection
All checks were successful
Deploy to OCIWP / deploy (push) Successful in 7m53s

This commit is contained in:
jade
2026-07-24 23:52:55 +09:00
parent 4dcc85eff0
commit 4015207b86
32 changed files with 47 additions and 789 deletions

View File

@@ -96,12 +96,12 @@ public class ScaffoldingController {
File[] files = dir.listFiles(f -> f.isDirectory() && f.getName().startsWith("dap-tool-") && !f.getName().equals("dap-tool-core"));
if (files == null || files.length == 0) {
return List.of("dap-tool-other", "dap-tool-email", "dap-tool-hr", "dap-tool-payment", "dap-tool-sms");
return List.of("dap-tool-other", "dap-tool-hr", "dap-tool-sms");
}
return Arrays.stream(files).map(File::getName).sorted().collect(Collectors.toList());
} catch (Exception e) {
return List.of("dap-tool-other", "dap-tool-email", "dap-tool-hr", "dap-tool-payment", "dap-tool-sms");
return List.of("dap-tool-other", "dap-tool-hr", "dap-tool-sms");
}
}
}

View File

@@ -13,8 +13,6 @@ mcp:
default-url: http://nginx:8284
routes:
sms: http://nginx:8282
email: http://nginx:8283
payment: http://nginx:8285
hr: http://nginx:8284
# --- 신한라이프 EAI/MCI 연계 IP 정보 (개발 환경) ---

View File

@@ -37,8 +37,6 @@ mcp:
default-url: http://tool-other:8084
routes:
sms: http://tool-sms:8082
email: http://tool-email:8083
payment: http://tool-payment:8085
hr: http://tool-other:8084
tool:
host: localhost

View File

@@ -486,9 +486,7 @@
<label class="form-label">Target Module</label>
<select class="form-select" name="moduleName" id="targetModuleSelect" required>
<option value="dap-tool-other">dap-tool-other</option>
<option value="dap-tool-email">dap-tool-email</option>
<option value="dap-tool-hr">dap-tool-hr</option>
<option value="dap-tool-payment">dap-tool-payment</option>
<option value="dap-tool-sms">dap-tool-sms</option>
</select>
<div class="input-hint">Destination Pod directory.</div>