Added https link

This commit is contained in:
2025-04-19 15:15:33 +08:00
parent c9cf2719ff
commit 1453cb7f82

View File

@@ -38,6 +38,7 @@
port: 40069,
name: "☁ Nextcloud",
desc: "Self-hosted cloud storage",
secured: true,
},
{
port: 1957,
@@ -75,7 +76,7 @@
services.forEach((service) => {
const card = document.createElement("a");
card.href = `http://${hostIP}:${service.port}`;
card.href = `${service.secured ? "https" : "http"}://${hostIP}:${service.port}`;
card.target = "_blank";
card.className =
"bg-gray-800 hover:bg-gray-700 transition rounded-lg p-6 shadow-lg border border-gray-700";