Merge branch 'no-gerbil' into dev

This commit is contained in:
Owen Schwartz 2025-01-12 15:58:29 -05:00
commit f72dd3471e
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
9 changed files with 369 additions and 211 deletions

View file

@ -151,6 +151,16 @@ export async function traefikConfigProvider(
],
},
};
} else if (site.type === "local") {
http.services![serviceName] = {
loadBalancer: {
servers: [
{
url: `${target.method}://${target.ip}:${target.port}`,
},
],
},
};
}
}