Added nextcloud to the software.jsx

This commit is contained in:
Mathias Wagner 2023-06-02 03:52:23 +02:00
parent 63aa720e63
commit 5cae536a04
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -1,6 +1,7 @@
import MySpeedImage from "./images/myspeed.webp";
import DockerImage from "./images/docker.webp";
import {faBox, faFolder} from "@fortawesome/free-solid-svg-icons";
import NextCloudImage from "./images/nextcloud.webp";
import {faBox, faFolder, faGlobe, faKey, faUser} from "@fortawesome/free-solid-svg-icons";
export default [
{
@ -19,5 +20,15 @@ export default [
{type: "select", id: "environment", text: "Umgebung", icon: faBox, options: ["Stabil", "Test"],
value: "Stabil"},
]
},
{
name: "NextCloud",
icon: NextCloudImage,
configuration: [
{type: "input", id: "folder", text: "Ort", icon: faFolder, value: "/var/www/cloud"},
{type: "input", id: "domain", text: "Domain", icon: faGlobe, value: "cloud.example.com"},
{type: "input", id: "user", text: "Benutzer", icon: faUser, value: "Admin"},
{type: "input", id: "pass", text: "Passwort", icon: faKey, value: () => Math.random().toString(36).slice(-8)}
]
}
];