Private connection working with traefik

This commit is contained in:
Owen
2026-08-06 17:22:01 -04:00
parent 22f2990f56
commit 184e1425a4
3 changed files with 6 additions and 3 deletions
+4 -1
View File
@@ -421,7 +421,10 @@ export default function PrivateResourcesTable({
/>
);
}
if (resourceRow.mode === "http") {
if (
resourceRow.mode === "http" ||
resourceRow.mode === "inference"
) {
const domainId = resourceRow.domainId;
const fullDomain = resourceRow.fullDomain;
const url = `${resourceRow.ssl ? "https" : "http"}://${fullDomain}`;