Added https link
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user