Host CryptPad #120
1 changed files with 67 additions and 48 deletions
|
|
@ -46,6 +46,17 @@ in
|
||||||
listenPort = port;
|
listenPort = port;
|
||||||
allowedHosts = "homepage-dashboard.fi33.buzz";
|
allowedHosts = "homepage-dashboard.fi33.buzz";
|
||||||
services = [
|
services = [
|
||||||
|
{
|
||||||
|
"Public Services" = [
|
||||||
|
{
|
||||||
|
Send = {
|
||||||
|
description = "Simple, private file sharing";
|
||||||
|
icon = "send.svg";
|
||||||
|
href = "https://send.fi33.buzz/";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
{
|
{
|
||||||
"Media Management" = [
|
"Media Management" = [
|
||||||
{
|
{
|
||||||
|
|
@ -146,6 +157,52 @@ in
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
"Private Services" = [
|
||||||
|
{
|
||||||
|
"copyparty" = {
|
||||||
|
"description" = "Cloud file manager";
|
||||||
|
"icon" = "sh-copyparty.svg";
|
||||||
|
"href" = "https://copyparty.fi33.buzz/";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
CouchDB = {
|
||||||
|
description = "Obsidian sync database";
|
||||||
|
icon = "couchdb.svg";
|
||||||
|
href = "https://couchdb.fi33.buzz/_utils/";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
ntfy = {
|
||||||
|
description = "Notification service";
|
||||||
|
icon = "ntfy.svg";
|
||||||
|
href = "https://ntfy-sh.fi33.buzz/";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
Radicale = {
|
||||||
|
description = "CalDAV/CardDAV service";
|
||||||
|
icon = "radicale.svg";
|
||||||
|
href = "https://radicale.fi33.buzz";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
Syncthing = {
|
||||||
|
description = "Decentralised file synchronisation";
|
||||||
|
icon = "syncthing.svg";
|
||||||
|
href = "https://syncthing.fi33.buzz/";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
Vaultwarden = {
|
||||||
|
description = "Password manager";
|
||||||
|
icon = "vaultwarden.svg";
|
||||||
|
href = "https://vaultwarden.fi33.buzz/";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
{
|
{
|
||||||
"Media Streaming" = [
|
"Media Streaming" = [
|
||||||
{
|
{
|
||||||
|
|
@ -223,52 +280,7 @@ in
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
{
|
|
||||||
Services = [
|
|
||||||
{
|
|
||||||
"copyparty" = {
|
|
||||||
"description" = "Cloud file manager";
|
|
||||||
"icon" = "sh-copyparty.svg";
|
|
||||||
"href" = "https://copyparty.fi33.buzz/";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
|
||||||
CouchDB = {
|
|
||||||
description = "Obsidian sync database";
|
|
||||||
icon = "couchdb.svg";
|
|
||||||
href = "https://couchdb.fi33.buzz/_utils/";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
|
||||||
ntfy = {
|
|
||||||
description = "Notification service";
|
|
||||||
icon = "ntfy.svg";
|
|
||||||
href = "https://ntfy-sh.fi33.buzz/";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
|
||||||
Radicale = {
|
|
||||||
description = "CalDAV/CardDAV service";
|
|
||||||
icon = "radicale.svg";
|
|
||||||
href = "https://radicale.fi33.buzz";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
|
||||||
Syncthing = {
|
|
||||||
description = "Decentralised file synchronisation";
|
|
||||||
icon = "syncthing.svg";
|
|
||||||
href = "https://syncthing.fi33.buzz/";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
|
||||||
Vaultwarden = {
|
|
||||||
description = "Password manager";
|
|
||||||
icon = "vaultwarden.svg";
|
|
||||||
href = "https://vaultwarden.fi33.buzz/";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{
|
{
|
||||||
Utilities = [
|
Utilities = [
|
||||||
{
|
{
|
||||||
|
|
@ -288,14 +300,21 @@ in
|
||||||
headerStyle = "clean";
|
headerStyle = "clean";
|
||||||
layout = [
|
layout = [
|
||||||
{
|
{
|
||||||
"Media Streaming" = {
|
"Public Services" = {
|
||||||
style = "row";
|
style = "row";
|
||||||
columns = 3;
|
columns = 3;
|
||||||
useEqualHeights = true;
|
useEqualHeights = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Services = {
|
"Private Services" = {
|
||||||
|
style = "row";
|
||||||
|
columns = 3;
|
||||||
|
useEqualHeights = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"Media Streaming" = {
|
||||||
style = "row";
|
style = "row";
|
||||||
columns = 3;
|
columns = 3;
|
||||||
useEqualHeights = true;
|
useEqualHeights = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue