Added nextcloud to the software.jsx
This commit is contained in:
parent
63aa720e63
commit
5cae536a04
@ -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)}
|
||||
]
|
||||
}
|
||||
];
|
Reference in New Issue
Block a user