1

Home: Add mars database port forward

This commit is contained in:
2026-03-19 10:29:55 +01:00
parent be3f6baa17
commit 9b43074248

View File

@ -922,10 +922,17 @@ in
serverAliveInterval = 60; serverAliveInterval = 60;
localForwards = [ localForwards = [
{ {
# Resultbrowser
bind.port = 22941; bind.port = 22941;
host.address = "127.0.0.1"; host.address = "127.0.0.1";
host.port = 22941; host.port = 22941;
} }
{
# Mysql
bind.port = 3306;
host.address = "127.0.0.1";
host.port = 3306;
}
]; ];
}; };
}; };