Clean up files, fix bugs in file manager, update api ports, etc.

This commit is contained in:
LukeGus
2025-09-25 01:21:15 -05:00
parent 700aa9e07d
commit 8f8ebf0c7f
49 changed files with 2497 additions and 5252 deletions

View File

@@ -1283,7 +1283,7 @@ async function initializeAutoStartTunnels(): Promise<void> {
// Get autostart hosts for tunnel configs
const autostartResponse = await axios.get(
"http://localhost:8081/ssh/db/host/internal",
"http://localhost:30001/ssh/db/host/internal",
{
headers: {
"Content-Type": "application/json",
@@ -1294,7 +1294,7 @@ async function initializeAutoStartTunnels(): Promise<void> {
// Get all hosts for endpointHost resolution
const allHostsResponse = await axios.get(
"http://localhost:8081/ssh/db/host/internal/all",
"http://localhost:30001/ssh/db/host/internal/all",
{
headers: {
"Content-Type": "application/json",
@@ -1420,7 +1420,7 @@ async function initializeAutoStartTunnels(): Promise<void> {
}
}
const PORT = 8083;
const PORT = 30003;
app.listen(PORT, () => {
tunnelLogger.success("SSH Tunnel API server started", {
operation: "server_start",