Merge pull request 'v2: initial commit' (#22) from v2 into main
continuous-integration/drone/push Build is failing Details

Reviewed-on: #22
Reviewed-by: teutat3s <teutat3s@noreply.git.pub.solar>
pull/23/head
b12f 2024-04-12 19:11:45 +00:00
commit 3062216d16
Signed by: pub.solar gitea
GPG Key ID: F0332B04B7054873
35 changed files with 1266 additions and 558 deletions

View File

@ -8,7 +8,7 @@ steps:
event:
- push
- pull_request
image: denoland/deno:alpine-1.39.1
image: denoland/deno:alpine-1.41.3
commands:
- deno task build

View File

@ -1,4 +1,4 @@
FROM denoland/deno:alpine-1.39.1
FROM denoland/deno:alpine-1.41.3
WORKDIR /site
COPY . .

View File

@ -41,6 +41,13 @@ As "documentation" `flake.nix` shows the internals, and
`_includes/styles/typography.css` has a comment at the top that shows which
command was used to generate it.
### Deployment
Our [Drone CI](https://ci.pub.solar/pub-solar/pub.solar) is configured to
deploy the `main` branch to the production website. To integrate any changes,
first create a pull request, which will be reviewed. After merging it, the new
version will get deployed automatically.
### Troubleshooting
When running `deno task serve`, if you see an error message like:

View File

@ -7,25 +7,56 @@ import postcss from "lume/plugins/postcss.ts";
const site = lume();
const languages = [
{
name: 'deutsch',
slug: 'de',
urlPrefix: 'de',
},
{
name: 'english',
slug: 'en',
urlPrefix: '',
},
];
site.data('languages', languages);
site.preprocess([ '.yml' ], (pages) => {
for (const page of pages) {
const urlParts = (page.data.url || '').replace(/^\/|\/$/g, '').split('/');
const langPrefix = urlParts[0];
const currentLang = (() => {
if (langPrefix.length === 2) {
return languages.find(lang => lang.urlPrefix === langPrefix);
}
return languages.find(lang => lang.urlPrefix.length === 0);
})() || languages[0];
page.data.language = currentLang;
page.data.otherLang = languages.find(l => l.slug !== currentLang.slug);
page.data.baseURL = page.data.url.replace(new RegExp(`^\\/${currentLang.slug}`), '');
}
});
site.use(sass());
site.use(date());
site.use(jsx());
site.use(terser());
site.use(postcss());
site.loadAssets([
".png",
".jpg",
".svg",
".pdf",
".woff2",
".woff",
".ttf",
".otf",
".js",
".txt",
]);
site.loadAssets([ ".js" ]);
site.ignore("README.md", "CHANGELOG.md", "LICENSE.md", "docker-compose.yml");
site.copy("assets");
site.copy("fonts");
site.ignore(
".direnv",
"README.md",
"CHANGELOG.md",
"LICENSE.md",
"docker-compose.yml",
);
export default site;

View File

@ -1,16 +1,6 @@
dates:
- name: Winter 2024
theme: org-mode
location:
en: Berlin
de: Berlin
description:
en: |
This hakken will include our yearly general assembly. This is the perfect opportunity to get to know the internals of the organization, and to get involved!
de: |
Auf diesem hakken wird die Mitgliederversammlung stattfinden. Dies ist die perfekte Gelegenheit pub.solar n.e.V. als Organisation kennenzulernen und mitzumachen!
- name: Spring 2024
id: spring-2024
theme: Push for privacy
location:
en: Cologne @ [MiOM space](https://miom.space)
@ -30,10 +20,11 @@ dates:
Projekt-Ideen:
* Löschen von alten Accounts automatisieren
* eine Analyse unserer Datenspeicherung erstellen; was speichern wir und wo? Können wir das reduzieren?
* unsere Datenschutzerklärung auffrischen
* unser20e Datenschutzerklärung auffrischen
* schauen ob wir eigene Hardware kriegen könnten
- name: Summer 2024
id: summer-2024
theme: Hot CPU Summer
location:
en: Cologne @ [MiOM space](https://miom.space)
@ -53,6 +44,7 @@ dates:
* Einen open source Fahrradcomputer bauen
- name: Autumn 2024
id: autumn-2024
theme: Awesome hardware autumn
location:
en: Cologne @ [MiOM space](https://miom.space)
@ -79,8 +71,8 @@ strings:
en: 'Where'
de: 'Wo'
comingDates:
en: 'The following dates are scheduled:'
de: 'Folgende Termine stehen an:'
en: 'Upcoming dates'
de: 'Kommende Termine'
friday:
en: 'friday'
de: 'Freitag'

366
_data/services.yml Normal file
View File

@ -0,0 +1,366 @@
services:
- name: Nextcloud
id: nextcloud
description:
en: Store your files, calendar, contacts and many other things in the pub.solar cloud. Access from all your devices. An alternative to Google Cloud, Apple's iCloud or Microsoft Office.
de: Sichere deine Dateien, Kalender, Kontakte und vieles mehr in der pub.solar Cloud. Mit Zugriff von all deinen Geräten. Eine Alternative zur Google Cloud, Apples iCloud oder Microsoft Office.
link: https://cloud.pub.solar
wiki: https://wiki.pub.solar/index.php/Nextcloud
support:
status: yes # yes partial no
backups:
status: untested # fully-automated untested not-applicable no
anonymousUsage:
status: no # yes partial no
zeroKnowledge: # yes partial no
status: no
comment:
en: |
By default, no data in Nextcloud is encrypted and everything is readable and changeable by pub.solar administrators.
However, we have installed the [End-to-End Encryption app](https://apps.nextcloud.com/apps/end_to_end_encryption) which gives you the option to encrypt files before they are sent to the pub.solar cloud.
This application has horrible reviews, with lots of people saying they suffered dataloss. Though we offer this option, **there will be no support or help** if you use this app and lose data.
de: |
Standardmäßig sind keine Daten in Nextcloud verschlüsselt und alles ist für pub.solar-Administratoren lesbar und veränderbar.
Wir haben jedoch die [Ende-zu-Ende Verschlüsselungs-App] (https://apps.nextcloud.com/apps/end_to_end_encryption) installiert, die dir die Möglichkeit gibt Dateien zu verschlüsseln, bevor sie an die pub.solar-Cloud gesendet werden.
Diese Anwendung hat schreckliche Rezensionen, in denen viele Personen angeben Daten verloren zu haben. Obwohl wir diese Option anbieten, **wird es keine Unterstützung oder Hilfe unsererseits geben**, falls du diese App verwendest und Daten verloren gehen.
storageEncrypted: # yes no
status: yes
loggingMinimized: # yes partial no
status: no
decentralized: # yes partial no
status: yes
- name: Mastodon
id: mastodon
description:
en: Social networking and microblogging. A decentralized alternative to X (Twitter).
de: Soziales Netzwerken und Microblogging. Eine dezentrale Alternative zu X (Twitter).
link: https://mastodon.pub.solar
support:
status: yes # yes partial no
backups:
status: untested # fully-automated untested not-applicable no
anonymousUsage:
status: partial # yes partial no
comment:
en: You can use our [web interface](https://mastodon.pub.solar) to read posts, but if you want to post stuff yourself you will need a pub.solar ID.
de: Du kannst unser [Web Interface](https://mastodon.pub.solar) benutzen, um Beiträge zu lesen, aber wenn du selber einen Beitrag verfassen möchtest, benötigst du eine pub.solar ID.
zeroKnowledge: # yes partial no
status: no
storageEncrypted: # yes no
status: yes
loggingMinimized: # yes partial no
status: no
decentralized: # yes partial no
status: yes
- name: Matrix
id: matrix
description:
en: Matrix is a decentralized, encrypted chat service. It can be used as an alternative to tools like Discord, Slack, or IRC. In fact, Matrix can bridge into these other chat tools, allowing you to chat with everyone from one place.
de: Matrix ist ein dezentraler, verschlüsselter Chat Service. Es kann als Alternative zu Programmen wie Discord, Slack oder IRC benutzt werden. Matrix kann auch als Brücke zu diesen anderen Chat Programmen verwendet werden, was es dir erlaubt mit allen von einem Ort aus zu chatten.
link: https://chat.pub.solar
support:
status: yes # yes partial no
backups:
status: untested # fully-automated untested not-applicable no
anonymousUsage:
status: no # yes partial no
zeroKnowledge: # yes partial no
status: partial
comment:
en: |
By default pub.solar admins cannot read your messages, but there is metadata that is accessible:
* Who you are talking to
* When you are talking to them
* When you are online or offline
Also, some larger public rooms are unencrypted, and you have the option to turn off encryption on rooms you control.
de: |
Generell können pub.solar Administratoren eure Nachrichten nicht lesen, aber folgende Metadaten sind einsehbar:
* Mit wem du sprichst
* Wann du mit ihnen sprichst
* Wann du online oder offline bist
Manche größere öffentliche Räume sind unverschlüsselt und du hast die Option die Verschlüsselung für Räume auszuschalten, die du kontrollierst.
storageEncrypted: # yes no
status: yes
loggingMinimized: # yes partial no
status: no
decentralized: # yes partial no
status: yes
- name: Forgejo / git
id: forgejo
description:
en: git server
de: Git Server
link: https://git.pub.solar
support:
status: yes # yes partial no
backups:
status: untested # fully-automated untested nnot-applicable no
anonymousUsage:
status: no # yes partial no
zeroKnowledge: # yes partial no
status: no
storageEncrypted: # yes no
status: yes
loggingMinimized: # yes partial no
status: no
decentralized: # yes partial no
status: no
- name: Wiki
id: wiki
description:
en: Our wiki
de: Unser Wiki
link: https://wiki.pub.solar
support:
status: partial # yes partial no
backups:
status: untested # fully-automated untested not-applicable no
comment:
en: The database is backed up regularly, but not assets like images.
de: Für die Datenbank gibt es ein regelmäßiges Back-up, aber nicht für Bestandteile wie Bilder.
anonymousUsage:
status: partial # yes partial no
zeroKnowledge: # yes partial no
status: no
storageEncrypted: # yes no
status: yes
loggingMinimized: # yes partial no
status: no
decentralized: # yes partial no
status: no
- name: Mailman
id: mailman
description:
en: Mailing lists
de: Mailinglisten
link: https://list.pub.solar
support:
status: partial # yes partial no
backups:
status: untested # fully-automated untested not-applicable no
anonymousUsage:
status: no # yes partial no
zeroKnowledge: # yes partial no
status: no
storageEncrypted: # yes no
status: yes
loggingMinimized: # yes partial no
status: no
decentralized: # yes partial no
status: no
- name: OpenBikeSensor portal
id: obs-portal
description:
en: Portal for the OpenBikeSensor project. This portal currently only hosts the Cologne/Bonn region.
de: Portal für das OpenBikeSensor Projekt. Dieses Portal deckt zurzeit nur die Region Köln/Bonn ab.
link: https://obs-portal.pub.solar
support:
status: partial # yes partial no
backups:
status: untested # fully-automated untested not-applicable no
anonymousUsage:
status: no # yes partial no
zeroKnowledge: # yes partial no
status: no
storageEncrypted: # yes no
status: yes
loggingMinimized: # yes partial no
status: no
decentralized: # yes partial no
status: no
- name: Searx
id: searx
description:
en: Search engine
de: Suchmaschine
link: https://search.pub.solar
support:
status: no # yes partial no
backups:
status: not-applicable # fully-automated untested not-applicable no
anonymousUsage:
status: yes # yes partial no
zeroKnowledge: # yes partial no
status: yes
storageEncrypted: # yes no
status: yes
loggingMinimized: # yes partial no
status: no
decentralized: # yes partial no
status: not-applicable
strings:
visit_service:
en: 'Visit service'
de: 'Zum Dienst'
wiki_help_page:
en: Wiki help page
de: Wikiseite
states:
yes:
en: Yes
de: Ja
partial:
en: Partial
de: Teilweise
no:
en: No
de: Nein
not-applicable:
en: Not applicable
de: Nicht zutreffend
fully-automated:
en: Fully automated
de: Komplett automatisiert
untested:
en: Yes, untested
de: Ja, nicht getestet
support:
name:
en: Support
de: Hilfe
description:
en: This badge describes how much love and support this service gets from the pub.solar community. Services with a higher level of support are less likely to suffer from outages or dataloss.
de: Dieses Schild beschreibt, wie viel Liebe und Unterstützung dieser Service von der pub.solar Gemeinschaft erhält. Services mit einem höheren Maß an Unterstützung sind weniger anfällig für Ausfälle oder Verlust von Daten.
states:
yes:
en: We consider this service to be part of our core. It is among our highest priority services to keep it online, up-to-date, and backed-up. This service will not be shut down without at least 3 months of prior notice.
de: Wir betrachten diesen Service als wesentlichen Teil unserer Infrastruktur. Er gehört zu den Services mit der höchsten Priorität, die wir online, aktuell und gesichert halten. Dieser Service wird nicht ohne eine Vorankündigung von mindestens 3 Monaten abgeschaltet.
partial:
en: We have been running this service for a while, and it is probably going to be around to stay. However, it is not our highest priority. We could shut this service down with only a couple of days of prior notice.
de: Wir betreiben diesen Service schon seit einiger Zeit und er wird wahrscheinlich auch in Zukunft bestehen bleiben. Er hat jedoch nicht unsere höchste Priorität. Wir könnten diesen Service mit einer Vorankündigung von nur wenigen Tagen abschalten.
no:
en: This service started because someone thought it was fun to try out, as a test, or is very new. Expect changes, downtime, or even shutdown to happen at any time.
de: Dieser Service läuft weil jemand Spaß daran hatte, ihn auszuprobieren, als Test, oder er ist sehr neu. Rechne damit, dass es jederzeit zu Änderungen, Ausfallzeiten oder sogar zur Abschaltung kommen kann.
backups:
name:
en: Backups
de: Backups
description:
en: This badge shows whether the data in the service is automatically backed up every day.
de: Dieses Schild zeigt an, ob die Daten des Services täglich automatisch gesichert werden.
states:
yes:
en: Daily, encrypted backups are made automatically and are tested so we can also automatically restore the service.
de: Tägliche, verschlüsselte Backups werden automatisch erstellt und getestet, so dass wir den Service auch automatisch wiederherstellen können.
untested:
en: We run daily encrypted backups to an offsite location, but we do not have automated tests to see if recovery works. In a catastrophic event, recovery might take a long time.
de: Wir führen täglich verschlüsselte Sicherungen zu einem externen Standort durch, aber wir haben keine automatischen Tests, um festzustellen, ob die Wiederherstellung funktioniert. Im Katastrophenfall kann die Wiederherstellung sehr lange dauern.
not-applicable:
en: This service does not store any data to be backed up.
de: Bei diesem Service werden keine Daten gespeichert die gesichert werden müssen.
no:
en: Data from this service is not backed up. Expect dataloss any time.
de: Die Daten dieses Services werden nicht gesichert. Rechne jederzeit mit Datenverlusten.
anonymousUsage:
name:
en: Anonymous usage
de: Anonyme Benutzung
description:
en: This badge shows whether you can use the service without registering a pub.solar ID.
de: Dieses Schild zeigt an ob du den Service nutzen kannst ohne eine pub.solar ID zu registrieren.
states:
yes:
en: You can use all features of this service without logging in with a pub.solar ID.
de: Du kannst alle Funktionen dieses Services nutzen, ohne dich mit einer pub.solar ID anzumelden.
partial:
en: Some features of this service require you to log in with a pub.solar ID.
de: Für einige Funktionen dieses Services musst du dich mit einer pub.solar ID anmelden.
no:
en: You have to log in with a pub.solar ID to use this service.
de: Um diesen Service zu nutzen, musst du dich mit einer pub.solar ID anmelden.
zeroKnowledge:
name:
en: Zero knowledge
de: Zero knowledge
description:
en: This badge tells you how much access the pub.solar administrators have to your data in that service.
de: Dieses Schild zeigt dir, wie viel Zugriff die pub.solar Administratoren auf deine Daten in diesem Service haben.
states:
yes:
en: pub.solar administrators have no access to your data in this service.
de: Die Administratoren von pub.solar haben keinen Zugriff auf deine Daten in diesem Service.
partial:
en: Some of the data of this service is unreadable to pub.solar administrators, but not all.
de: Einige der Daten dieses Services sind für pub.solar Administratoren nicht einsehbar, aber nicht alle.
no:
en: All your data in this service is readable by pub.solar administrators.
de: Alle deine Daten in diesem Service sind für die Administratoren von pub.solar lesbar.
storageEncrypted:
name:
en: Storage encrypted
de: Verschlüsselter Speicher
description:
en: |
This badge tells you whether the service data is stored on encrypted drives. This protects against unwanted physical access to the servers, since only the pub.solar administrators can unlock the hard drive encryption.
***Caveat***: Man-in-the-middle attacks that intercept the password in-transit when pub.solar administrators remotely unlock the disk can circumvent this. Do not rely on storage encryption to keep your data safe from highly-capable attackers like nation-states. Focus on the zero-knowledge badge if this is your threat-model.
de: |
Dieses Schild zeigt an, ob die Daten des Services auf verschlüsselten Laufwerken gespeichert sind. Dies schützt vor unerwünschtem physischen Zugriff auf die Server, da nur die pub.solar Administratoren die Festplatten entschlüsseln können.
***Vorbehalt***: Man-in-the-middle Angriffe, die das Passwort beim Entsperren der Festplatte durch einen pub.solar Administrator aus der Ferne abfangen, könnten dies umgehen. Verlasse dich nicht auf die Speicherverschlüsselung, um Daten vor sehr gut ausgestatteten Angreifern wie Staaten zu schützen. Beachte bitte das Zero Knowledge Schild, wenn das dein Bedrohungsmodell ist.
states:
yes:
en: This service runs on a server with encrypted hard drives.
de: Dieser Service läuft auf einem Server mit verschlüsselten Festplatten.
no:
en: This service **does not** run on a server with encrypted hard drives.
de: Dieser Service läuft **nicht** auf einem Server mit verschlüsselten Festplatten.
loggingMinimized:
name:
en: Logging minimized
de: Minimiertes Logging
description:
en: This badge tells you whether we have configured the service and any related software so it logs as little data as possible.
de: Dieses Schild zeigt dir, ob wir den Service und die zugehörige Software so konfiguriert haben, dass so wenig Log-Dateien wie möglich aufgezeichnet werden.
states:
yes:
en: No logs are written at all.
de: Es werden keinerlei Logs erstellt.
partial:
en: We have reduced the amount of logging, but there is still some amount of activity logging going on.
de: Wir haben den Umfang des Logging reduziert, aber es wird immer noch ein gewisses Maß an Aktivitäten protokolliert.
no:
en: This service runs in its default logging configuration.
de: Dieser Service wird in seiner Standardkonfiguration für das Logging ausgeführt.
decentralized:
name:
en: Decentralized
de: Dezentralisiert
description:
en: |
This badge shows whether this service can interact and federate with services of similar types hosted by other people or organizations.
For example, you can send an email from your own provider to someone who has their address with some other provider. With facebook messages you cannot do this; all facebook messages have to go to other facebook users.
de: |
Dieses Schild zeigt an ob dieser Service mit Services ähnlicher Art, die von anderen Personen oder Organisationen betrieben werden, interagieren und föderieren kann.
Du kannst zum Beispiel eine E-Mail von deinem eigenen Anbieter an jemanden senden der seine E-Mail Adresse bei einem anderen Anbieter hat. Bei Facebook-Nachrichten ist dies nicht möglich; alle Facebook-Nachrichten können nur an andere Facebook-Nutzer gesendet werden.
states:
yes:
en: All relevant communication features of this service can interact and federate with other instances of similar services.
de: Alle relevanten Funktionen dieses Services können mit anderen Instanzen interagieren und föderieren.
partial:
en: Some features of this service can interact with other instances.
de: Einige Funktionen dieses Services können mit anderen Instanzen interagieren und föderieren.
not-applicable:
en: This service has no features that could be decentralized.
de: Dieser Service hat keine Funktionen, die dezentralisiert werden können.
no:
en: This service is centralized.
de: Dieser Service ist zentralisiert.

View File

@ -43,16 +43,16 @@ const getStartAndEnd = (date) => {
}
};
export default ({ data, lang, className }) => {
export default ({ data, language, className = '', }) => {
const strings = data.strings;
const dates = data.dates;
const t = (o) => o?.[lang] || '';
const t = (o) => o?.[language.slug] || '';
return <div
id={`dates-list-${lang}`}
return <section
id={`dates-list-${language.slug}`}
className={`ps-hakken-dates ${className}`}
>
<p>{t(strings.comingDates)}</p>
<h3>{t(strings.comingDates)}</h3>
<ul className="ps-hakken-dates--list">
{dates.map((date, i) => {
const { start, end } = getStartAndEnd(date);
@ -68,7 +68,16 @@ export default ({ data, lang, className }) => {
].filter(n => n !== null).join(' ');
return <li key={i} className="ps-hakken-dates--item">
<h3>{date.name} [{date.theme}]</h3>
<h4
id={date.id}
className="ps-hakken-dates--title"
>
{date.name} [{date.theme}]
<a
href={`#${date.id}`}
className="ps-hakken-dates--permalink"
>#</a>
</h4>
<div className="ps-hakken-dates--meta">
<p className="ps-hakken-dates--times">{t(strings.when)}: {untilString}.</p>
<p className="ps-hakken-dates--location">
@ -80,5 +89,5 @@ export default ({ data, lang, className }) => {
</li>;
})}
</ul>
</div>;
</section>;
};

View File

@ -3,11 +3,14 @@ import { title as titleFilter } from '../filters.ts';
export default ({
title,
theme,
baseURL,
otherLang,
extraStylesheets,
extraScripts,
cacheBust,
}) => <head>
<meta charSet="utf-8" />
<title>{ titleFilter(title) }</title>
<link rel="shortcut icon" href="/assets/pubsolar.svg" />
@ -17,6 +20,8 @@ export default ({
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="alternate" hrefLang={otherLang.slug} href={otherLang.urlPrefix ? `/${otherLang.urlPrefix}` : baseURL} />
<link rel="stylesheet" type="text/css" href={`/styles.css${cacheBust}`} media="all" />
<>

4
_includes/Langlink.tsx Normal file
View File

@ -0,0 +1,4 @@
export default ({ otherLang, baseURL }) => <a
href={otherLang.urlPrefix ? `/${otherLang.urlPrefix }${baseURL}` : baseURL}
className="ps-homelink ps-homelink_lang"
>{otherLang.slug}</a>

54
_includes/Services.tsx Normal file
View File

@ -0,0 +1,54 @@
import { md, mdi } from '../filters.ts';
const badges = [
"support",
"backups",
"anonymousUsage",
"zeroKnowledge",,
"loggingMinimized",
"decentralized",
"storageEncrypted",
] as string[];
export default ({ data, language, className = '', }) => {
const { services, strings } = data;
return <>
{services.map((service, i) => {
return <section key={i} className={`${className} ps-service`}>
<header className="ps-service--header">
<h2 className="ps-service--title" id={service.id}>{service.name}</h2>
<div className="ps-service--links">
<a href={service.link} target="_blank">{ strings.visit_service[language.slug] }</a>
{service.wiki ? <a href={service.wiki} target="_blank">{ strings.wiki_help_page[language.slug] }</a> : null}
</div>
</header>
<div
className="ps-service--description"
dangerouslySetInnerHTML={{ __html: md(service.description[language.slug]) }}
></div>
<div className="ps-service--badges">
{badges.map((badge, i) => {
const { status, comment } = service[badge];
return <details key={i} className={`ps-service--badge ps-service--badge_${status}`}>
<summary className="ps-service--badge-header">
<div className="ps-service--badge-title">{strings[badge].name[language.slug]}</div>
<div className="ps-service--badge-status">{strings.states[status][language.slug]}</div>
</summary>
<p dangerouslySetInnerHTML={{ __html: md(strings[badge].description[language.slug]) }}></p>
<p dangerouslySetInnerHTML={{ __html: md(strings[badge].states[status][language.slug]) }}></p>
{comment ? <p dangerouslySetInnerHTML={{ __html: md(comment[language.slug]) }}></p> : null }
</details>;
})}
</div>
</section>;
})}
</>;
};

View File

@ -2,12 +2,17 @@ import { md } from '../../filters.ts';
import Head from '../Head.tsx';
import Background from '../Background.tsx';
import Homelink from '../Homelink.tsx';
import Langlink from '../Langlink.tsx';
import HakkenDates from '../HakkenDates.tsx';
import Services from '../Services.tsx';
export default ({
title,
content,
language,
otherLang,
baseURL,
theme,
extraStylesheets,
extraScripts,
@ -15,11 +20,16 @@ export default ({
showHakkenDates,
hakken,
showServices,
services,
}) => <>
<html>
<html lang={language.slug}>
<Head
title={title}
theme={theme}
otherLang={otherLang}
baseURL={baseURL}
extraStylesheets={extraStylesheets}
cacheBust={cacheBust}
extraScripts={[...(extraScripts || []), '/scripts/copy-code.js']}
@ -30,48 +40,15 @@ export default ({
<Homelink />
<Langlink otherLang={otherLang} baseURL={baseURL} />
<main className="ps-main--page ps-page">
<section
lang="en"
id="en"
className="ps-page--section"
>
<a
className="ps-page--section-link"
href="#de"
>
Deutsche übersetzung unten
<span className="ps-page--section-link-icon"></span>
</a>
<div className="ps-page--contents">
<section dangerouslySetInnerHTML={{ __html: md(content) }}></section>
{showServices ? <Services language={language} data={services} /> : null}
{showHakkenDates ? <HakkenDates language={language} data={hakken} /> : null}
</div>
<div
dangerouslySetInnerHTML={{ __html: md(content.en) }}
className="ps-page--section-contents"
></div>
{showHakkenDates ? <HakkenDates lang="en" className="ps-page--section-contents" data={hakken} /> : null}
</section>
<section
lang="de"
id="de"
className="ps-page--section"
>
<a
className="ps-page--section-link"
href="#en"
>
English translation above
<span className="ps-page--section-link-icon"></span>
</a>
<div
dangerouslySetInnerHTML={{ __html: md(content.de) }}
className="ps-page--section-contents"
></div>
{showHakkenDates ? <HakkenDates lang="de" className="ps-page--section-contents" data={hakken} /> : null}
</section>
</main>
</body>
</html>

View File

@ -7,15 +7,20 @@ export default ({
content,
code,
language,
otherLang,
baseURL,
theme,
extraStylesheets,
extraScripts,
cacheBust,
}) => <>
<html>
<html lang={language.slug}>
<Head
title={title}
theme={theme}
otherLang={otherLang}
baseURL={baseURL}
extraStylesheets={extraStylesheets}
cacheBust={cacheBust}
extraScripts={extraScripts}

View File

@ -1,35 +1,52 @@
import { md } from '../../filters.ts';
import Head from '../Head.tsx';
import Background from '../Background.tsx';
import Langlink from '../Langlink.tsx';
export default ({
title,
content,
links,
language,
otherLang,
baseURL,
theme,
extraStylesheets,
extraScripts,
cacheBust,
}) => <>
<html>
<html lang={language.slug}>
<Head
title={title}
theme={theme}
otherLang={otherLang}
baseURL={baseURL}
extraStylesheets={extraStylesheets}
cacheBust={cacheBust}
extraScripts={extraScripts}
/>
<body className="ps-main">
<Background />
<Langlink otherLang={otherLang} baseURL={baseURL} />
<main className="ps-main--page ps-page ps-page_home">
{links.map(({ href, title, openInNewTab }) =>
<a
href={href}
target={openInNewTab ? '_blank' : '_self'}
className="ps-page--link"
key={href}
>{title}</a>
)}
<section
className="ps-page--contents"
dangerouslySetInnerHTML={{ __html: md(content) }}
></section>
<section className="ps-page--links">
{links.map(({ href, title, openInNewTab }) =>
<a
href={href}
target={openInNewTab ? '_blank' : '_self'}
className="ps-page--link"
key={href}
>{title}</a>
)}
</section>
</main>
</body>
</html>

View File

@ -0,0 +1,48 @@
import { md } from '../../filters.ts';
import Head from '../Head.tsx';
import Background from '../Background.tsx';
import Homelink from '../Homelink.tsx';
import HakkenDates from '../HakkenDates.tsx';
export default ({
title,
content,
language,
otherLang,
baseURL,
theme,
extraStylesheets,
extraScripts,
cacheBust,
showHakkenDates,
hakken,
}) => <>
<html lang={language.slug}>
<Head
title={title}
theme={theme}
otherLang={otherLang}
baseURL={baseURL}
extraStylesheets={extraStylesheets}
cacheBust={cacheBust}
extraScripts={[...(extraScripts || []), '/scripts/copy-code.js']}
/>
<body className="ps-main">
<Background />
<Homelink />
<main className="ps-main--page ps-page">
<div
dangerouslySetInnerHTML={{ __html: md(content) }}
className="ps-page--contents"
></div>
{showHakkenDates ? <HakkenDates lang="en" className="ps-page--contents" data={hakken} /> : null}
</main>
</body>
</html>
</>;

View File

@ -1,14 +1,25 @@
.ps-hakken-dates {
margin: 5vw;
margin-top: 0;
&--list {
list-style: none;
padding: 0;
}
&--title {
display: flex;
align-items: center;
justify-content: space-between;
&:target {
border-bottom: 4px solid var(--foreground);
}
}
&--permalink {
min-height: 2rem;
}
&--item {
border-left: 3px solid var(--accent);
border-left: 0.25rem solid var(--accent);
padding-left: 1rem;
}

View File

@ -10,21 +10,29 @@
text-decoration: none;
text-align: center;
font-weight: 900;
font-size: 24px;
padding: 8px;
font-size: 1.5rem;
padding: 0.5rem;
line-height: 1em;
text-shadow: 0.15vw 0px 0px white;
text-shadow: 0.1em 0px 0px white;
transition: text-shadow 0.1s ease;
border: 12px solid black;
border: 1rem solid black;
border-top: 0;
border-left: 0;
&:hover {
text-shadow: 0.3vw 0px 0px var(--accent);
text-shadow: 0.1em 0px 0px var(--accent);
}
@media screen and (min-width: 1200px) {
font-size: 32px;
padding: 12px;
font-size: 2rem;
padding: 1rem;
}
&_lang {
left: unset;
right: 0;
border: 1rem solid black;
border-top: 0;
border-right: 0;
}
}

View File

@ -6,8 +6,6 @@
height: 100vh;
width: 100vw;
margin: 0;
padding-top: 10vw;
padding-bottom: 2vw;
overflow: auto;
position: relative;

View File

@ -2,30 +2,37 @@
display: flex;
width: 100vw;
flex-direction: column;
align-items: center;
align-items: flex-start;
justify-content: flex-start;
padding: 0;
padding: 1rem;
pointer-events: none;
@media screen and (min-width: 1200px) {
padding: 1vw;
flex-direction: row;
align-items: flex-start;
}
&_home {
padding: 2rem;
flex-direction: row;
flex-wrap: wrap;
}
&--section {
@media screen and (min-width: 1600px) {
padding: 4rem;
}
&_home {
flex-direction: column;
flex-wrap: nowrap;
}
&_home &--contents {
font-size: 1.25rem;
}
&--contents {
border: 12px solid black;
margin-top: 10vh;
margin-bottom: 10vh;
margin-top: 20rem;
margin-bottom: 20rem;
width: 100%;
max-width: 700px;
max-width: 800px;
flex-basis: 100%;
font-size: 16px;
flex-shrink: 1;
pointer-events: all;
color: var(--foreground);
@ -33,13 +40,13 @@
word-break: break-word;
display: flex;
flex-direction: column;
margin: 0;
font-weight: 500;
line-height: 1.75;
padding: 1.5rem;
@media screen and (min-width: 1200px) {
margin: 1vw;
}
&_home {
padding: 5vw;
padding: 3rem;
}
a {
@ -57,38 +64,6 @@
width: 230px;
margin-top: 1rem;
}
}
&--section-link {
position: sticky;
top: 0;
background-color: var(--background);
padding: 1rem;
display: flex;
justify-content: flex-end;
align-items: center;
text-align: right;
padding-left: 132px;
@media screen and (min-width: 1200px) {
display: none;
border-bottom: 0;
}
&-icon {
margin-left: 8px;
}
}
&--section-contents {
margin: 5vw;
margin-bottom: 0;
font-weight: 500;
line-height: 1.4;
&:last-child {
margin-bottom: 5vw;
}
pre,
code {
@ -108,15 +83,30 @@
> * {
margin-bottom: 0;
margin-top: 8px;
margin-top: 1.5rem;
}
> h1, h2 {
margin-top: 32px;
> h1,
> h2 {
line-height: 1.5;
}
}
&--links {
margin-top: 1rem;
display: flex;
flex-direction: row;
flex-wrap: wrap;
@media screen and (min-width: 700px) {
margin-top: 1.5rem;
}
@media screen and (min-width: 1000px) {
margin-top: 2rem;
}
}
&--link {
pointer-events: all;
color: var(--foreground);
@ -124,24 +114,30 @@
text-decoration: none;
text-align: center;
font-weight: 900;
font-size: 12rem;
font-size: 2rem;
line-height: 1em;
padding: 0.2vw;
margin: 2vw;
text-shadow: 0.15vw 0px 0px white;
padding: 0.4rem;
margin: 0;
margin-right: 1rem;
margin-bottom: 1rem;
text-shadow: 0.01em 0px 0px white;
transition: text-shadow 0.1s ease;
border: 12px solid black;
border: 0.75rem solid black;
&:hover {
text-shadow: 0.3vw 0px 0px var(--accent);
text-shadow: 0.1em 0px 0px var(--accent);
}
@media screen and (min-width: 700px) {
font-size: 8rem;
font-size: 3rem;
margin-right: 1.5rem;
margin-bottom: 1.5rem;
}
@media screen and (min-width: 1000px) {
font-size: 4rem;
margin-right: 2rem;
margin-bottom: 2rem;
}
}
}

View File

@ -0,0 +1,116 @@
.ps-service {
margin-top: 2rem;
margin-right: 1rem;
&--header {
margin: 0;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 0.25rem solid black;
};
&--title {
margin: 0;
}
&--links {
display: flex;
justify-content: flex-end;
flex-wrap: wrap;
flex-basis: 8rem;
flex-grow: 1;
max-width: 16rem;
> * {
margin-left: 2rem;
}
}
&--description {
margin: 0;
> * {
margin: 0;
margin-top: 1rem;
}
}
&--badges {
display: flex;
flex-direction: column;
align-items: flex-start;
margin-top: 1rem;
@media screen and (min-width: 700px) {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 0.5rem 1rem;
}
}
&--badge {
display: flex;
justify-content: space-between;
border-left: 0.25rem solid var(--accent);
padding-left: 1rem;
@media screen and (min-width: 700px) {
flex-basis: 50%;
}
&_yes,
&_fully-automated {
border-left-color: #009d11;
}
&_partial,
&_untested {
border-left-color: #ff8f00;
}
&_not-applicable {
border-left-color: #555;
}
&_no {
border-left-color: var(--accent);
}
}
&--badge-header {
display: flex;
justify-content: space-between;
cursor: pointer;
}
&--badge-title {
font-weight: bold;
}
&--badge-status {
display: inline-flex;
}
$b: &;
&--badge {
&_yes #{$b}--badge-status,
&_fully-automated #{$b}--badge-status {
color: #007d0e;
}
&_partial #{$b}--badge-status,
&_untested #{$b}--badge-status {
color: #ac6100;
}
&_not-applicable #{$b}--badge-status {
color: #555;
}
&_no #{$b}--badge-status {
color: var(--accent);
}
}
}

View File

@ -1,5 +1,10 @@
* {
box-sizing: border-box;
scroll-margin-top: 4rem;
@media screen and (min-width: 1200px) {
scroll-margin-top: 6rem;
}
}
html {
@ -20,7 +25,22 @@ html {
width: 100vw;
height: 100vh;
margin: 0;
font-size: 1vw;
}
h1 {
font-size: 2.25rem;
}
h2 {
font-size: 1.5rem;
}
h3 {
font-size: 1.25rem;
}
h4 {
font-size: 1rem;
}
@import './main';
@ -31,4 +51,5 @@ html {
@import './homelink';
@import './copy-code-button.scss';
@import './hakken-dates.scss';
@import './service.scss';

197
about.yml
View File

@ -2,176 +2,91 @@ layout: layouts/default.tsx
title: About & Imprint
content:
en: |
# Hi! We're pub.solar
content: |
# Hi! We're pub.solar
We are a non-registered association seated in Cologne, Germany. Our goal is to enable more people to use free software, have secure digital communications, and to take control over their private data.
We are a non-registered association seated in Cologne, Germany. Our goal is to enable more people to use free software, have secure digital communications, and to take control over their private data.
We host free software for you and all the people you love. We do this transparently and democratically.
We host free software for you and all the people you love. We do this transparently and democratically.
We currently offer these services:
We currently offer these services:
* [Matrix](https://chat.pub.solar): a decentralized, end-to-end encrypted chat, similar to Slack or Discord,
* [Mastodon](https://mastodon.pub.solar): a decentralized microblogging platform, similar to Twitter,
* [Nextcloud](https://cloud.pub.solar): a cloud with office capabilities, similar to the Google Suite and Microsoft Office 365,
* [Forgejo](https://git.pub.solar/): a git server, comparable to GitHub or Gitlab,
* [Matrix](https://chat.pub.solar): a decentralized, end-to-end encrypted chat, similar to Slack or Discord,
* [Mastodon](https://mastodon.pub.solar): a decentralized microblogging platform, similar to Twitter,
* [Nextcloud](https://cloud.pub.solar): a cloud with office capabilities, similar to the Google Suite and Microsoft Office 365,
* [Forgejo](https://git.pub.solar/): a git server, comparable to GitHub or Gitlab,
Additionally, the following services which might change or dissappear any time.
Additionally, the following services which might change or dissappear any time.
* [Searx](https://search.pub.solar/): a metasearch engine, similar to Google or Bing,
* [Mailman](https://lists.pub.solar/): a software for mailing lists,
* [OBS Portal](https://obs-portal.pub.solar/): a server for saving [OpenBikeSensor](https://www.openbikesensor.org/) data which is currently limited to the Cologne/Bonn region,
* [Searx](https://search.pub.solar/): a metasearch engine, similar to Google or Bing,
* [Mailman](https://lists.pub.solar/): a software for mailing lists,
* [OBS Portal](https://obs-portal.pub.solar/): a server for saving [OpenBikeSensor](https://www.openbikesensor.org/) data which is currently limited to the Cologne/Bonn region,
For some of these Services, you'll need to register an account, which we call a [pub.solar ID](https://auth.pub.solar). All services are publicly open for registration. Nextcloud accounts are severely limited in their storage amount. If you want more storage, please contact the crew.
For some of these Services, you'll need to register an account, which we call a [pub.solar ID](https://auth.pub.solar). All services are publicly open for registration. Nextcloud accounts are severely limited in their storage amount. If you want more storage, please contact the crew.
## Contact and getting help
## Contact and getting help
You can reach us via [#General in Matrix](https://matrix.to/#/#general:pub.solar?via=chat.pub.solar) and [@crew on Mastodon](https://mastodon.pub.solar/@crew), or send a mail to [crew@pub.solar](mailto:crew@pub.solar).
You can reach us via [#General in Matrix](https://matrix.to/#/#general:pub.solar?via=chat.pub.solar) and [@crew on Mastodon](https://mastodon.pub.solar/@crew), or send a mail to [crew@pub.solar](mailto:crew@pub.solar).
You can find our PGP key [here](https://keys.openpgp.org/vks/v1/by-fingerprint/8A8987ADE3736C8CA2EB315A9B809EBBDD62BAE3). It has the following fingerprint:
You can find our PGP key [here](https://keys.openpgp.org/vks/v1/by-fingerprint/8A8987ADE3736C8CA2EB315A9B809EBBDD62BAE3). It has the following fingerprint:
```
8A89 87AD E373 6C8C A2EB 315A 9B80 9EBB DD62 BAE3
```
```
8A89 87AD E373 6C8C A2EB 315A 9B80 9EBB DD62 BAE3
```
Check out our [wiki](https://wiki.pub.solar) or contact us via one of the methods above. In the Matrix [#General room](https://matrix.to/#/#general:pub.solar?via=chat.pub.solar) there's always someone around for answering your questions.
Check out our [wiki](https://wiki.pub.solar) or contact us via one of the methods above. In the Matrix [#General room](https://matrix.to/#/#general:pub.solar?via=chat.pub.solar) there's always someone around for answering your questions.
## Being a member or helping hand
## Being a member or helping hand
Are you interested in becoming a member of the pub.solar organisation? Do you want to support the organisation with labour, money, or just your name?
Are you interested in becoming a member of the pub.solar organisation? Do you want to support the organisation with labour, money, or just your name?
We are currently a non-registered association (n.e.V.), which means that from a legal perspective we are a group of individuals, _not_ members of a registered association. Our goal is to become a registered association (e.V.) and expand our work where we can.
We are currently a non-registered association (n.e.V.), which means that from a legal perspective we are a group of individuals, _not_ members of a registered association. Our goal is to become a registered association (e.V.) and expand our work where we can.
We are always looking for help and support. Being a member is currently not tied to any costs or privileges, but is rather an indicator of support. We encourage you to become a member even if (or, especially if) you are not very technically versed. Our goal is for pub.solar to be an organisation that helps _everyone_, especially people that would by themselves not be able to administrate IT infrastructure. We want you to have a voice in the decisions surrounding your services. We want the community to decide together what an IT infrastructure built with solidarity, freedom, privacy, and mutual support in mind would look like.
We are always looking for help and support. Being a member is currently not tied to any costs or privileges, but is rather an indicator of support. We encourage you to become a member even if (or, especially if) you are not very technically versed. Our goal is for pub.solar to be an organisation that helps _everyone_, especially people that would by themselves not be able to administrate IT infrastructure. We want you to have a voice in the decisions surrounding your services. We want the community to decide together what an IT infrastructure built with solidarity, freedom, privacy, and mutual support in mind would look like.
Feel like joining in? Know what to do? Don't know what to do? Just send the crew a message. We're looking forward to hearing from you!
Feel like joining in? Know what to do? Don't know what to do? Just send the crew a message. We're looking forward to hearing from you!
## Financing
## Financing
We currently pay for the infrastructure out of our own pockets (like the server and domain name).
We currently pay for the infrastructure out of our own pockets (like the server and domain name).
This situation is not long-term sustainable, and we're currently working on founding an e.V. and having solid financing. We'd of course welcome anyone wanting to help and participate!
This situation is not long-term sustainable, and we're currently working on founding an e.V. and having solid financing. We'd of course welcome anyone wanting to help and participate!
### Donate via IBAN
### Donate via IBAN
Jhonas Wernery
DE70430609674093197701
GLS Bank
Jhonas Wernery
DE70430609674093197701
GLS Bank
## Imprint
![QR GiroCode](/assets/donation-qr.png)
pub.solar n.e.V.
<script>
document.write(
'<p>' +
(['Benjamin Bädorf', 'Jhonas Wernery', 'Hendrik Sokolowki', 'Akshay Mankar']
.sort(() => Math.random() - 0.5)
.join(', ')) +
'</p>'
);
</script>
c/o MiOM Kreativraum e.V.,
Wilhelm-Mauser-Straße 47 Halle 5,
D-50827 Köln,
[crew@pub.solar](mailto:crew@pub.solar)
## Imprint
## Our Statutes
pub.solar n.e.V.
<script>
document.write(
'<p>' +
(['Benjamin Bädorf', 'Jhonas Wernery', 'Hendrik Sokolowki', 'Akshay Mankar']
.sort(() => Math.random() - 0.5)
.join(', ')) +
'</p>'
);
</script>
c/o MiOM Kreativraum e.V.,
Wilhelm-Mauser-Straße 47 Halle 5,
D-50827 Köln,
[crew@pub.solar](mailto:crew@pub.solar)
Are over [here](https://pub.solar/satzung).
## Our Statutes
## Our Privacy Policy
Are over [here](https://pub.solar/satzung). They are only available in German for now.
Is over [here](/privacy).
## Our Privacy Policy
## Our hosting
Is over [here](/privacy).
We use a dedicated server from Hetzner GmbH hosted in Germany.
## Our hosting
The code for the infrastructure can be found [in this git repository](https://git.pub.solar/pub-solar/infra).
We use a dedicated server from Hetzner GmbH hosted in Germany.
de: |
# Hi! Wir sind pub.solar
Wir sind ein nicht eingetragener Verein mit Sitz in Köln. Unser Ziel ist es mehr Menschen zu ermöglichen, Freie Software zu benutzen, sicher digital zu kommunizieren, und datensparsamer zu leben.
Wir stellen für Dich und alle Menschen die Du lieb hast auf transparente und demokratische Weise freie Software zur Verfügung.
Momentan bieten wir diese Services an:
* [Matrix](https://chat.pub.solar): dezentraler, Ende-zu-Ende verschlüsselter Chat, ähnlich wie Slack oder Discord,
* [Mastodon](https://mastodon.pub.solar): dezentrale Mikrobloggingplattform, ähnlich wie Twitter,
* [Nextcloud](https://cloud.pub.solar): Cloud mit Office Möglichkeiten, ähnlich wie Teile der Google Suite und Microsoft Office 365,
* [Forgejo](https://git.pub.solar/): ein git Server, ähnlich wie GitHub oder Gitlab.
Ausserdem bieten wir folgende Services an, die jederzeit geändert werden oder verschwinden könnten:
* [Searx](https://search.pub.solar/): eine Meta-Suchmachine, ähnlich wie Google oder Bing,
* [Mailman](https://lists.pub.solar/): eine Software für Mailing-Listen,
* [OBS Portal](https://obs-portal.pub.solar/): ein Server um [OpenBikeSensor](https://www.openbikesensor.org/)-Daten zu speichern, begrenzt auf die Region Köln/Bonn.
Für manche dieser Services musst du einen Account registrieren, bei uns heißt der [pub.solar ID](https://auth.pub.solar). Die Registrierung ist für alle offen. Bei der Nextcloud ist der Speicherplatz allerdings stark begrenzt. Falls du Speicherplatz in der Nextcloud haben willst, kontaktiere die Crew.
## Kontakt und Hilfe
Du kannst uns via [#General in Matrix](https://matrix.to/#/#general:pub.solar?via=chat.pub.solar) und [@crew auf Mastodon](https://mastodon.pub.solar/@crew) erreichen, oder eine Mail an [crew@pub.solar](mailto:crew@pub.solar) schicken.
Unseren PGP Schlüssel findest du [hier](https://keys.openpgp.org/vks/v1/by-fingerprint/8A8987ADE3736C8CA2EB315A9B809EBBDD62BAE3). Er hat folgenden Fingerabdruck:
```
8A89 87AD E373 6C8C A2EB 315A 9B80 9EBB DD62 BAE3
```
Schau dir bei Fragen gerne unser [wiki](https://wiki.pub.solar) an oder kontaktiere uns über einen der oben genannten Kanäle. Im Matrix [#General Raum](https://matrix.to/#/#general:pub.solar?via=chat.pub.solar) gibt es immer Menschen, die gerne deine Fragen beantworten.
## Mitglied oder Helfer*in werden
Bist du daran interessiert ein Mitglied von pub.solar n.e.V. zu werden? Du würdest die Organisation gerne mit Arbeit, Geld, oder einfach nur deinen Namen unterstützen?
Momentan sind wir ein nicht eingetragener Verein. Das bedeutet das wir juristisch eine Gruppe einzelner Personen sind (wie eine GbR) und der Verein nicht haften oder als juristische Person existiert. Unser Ziel ist es einen eingetragener Verein (e.V.) zu gründen.
Wir suchen immer nach Hilfe und Unterstützung. Eine Mitgliedschaft ist momentan weder mit Kosten noch Vorteile verbunden, und sollte eher ein Zeichen der Unterstützung sein. Wir ermutigen jede*n ein Mitglied zu werden, sogar (oder, vor allem) wenn du nicht sehr technisch bewandert bist. Unser Ziel ist es pub.solar zu einer Organisation zu machen die _allen_ hilft, vor allem Menschen die selbständig nicht in der Lage wären IT-Infrastruktur zu verwalten. Wir wollen dir eine Stimme in den Entscheidungen bezüglich deiner IT-Services geben. Wir wollen, dass die Community gemeinsam entscheidet wie IT die mit Solidarität, Freiheit, Privacy, und gegenseite Unterstützung gebaut wird aussieht.
Klingt nach deinem Ding? Schon ne Ahnung was du machen willst? Keine Ahnung was du machen willst? Schick die Crew ne Nachricht, wir freuen uns von dir zu hören!
## Finanzierung
Die laufenden Kosten zahlen wir momentan aus eigener Tasche (wie der Server + die Domain).
Diese Situation ist nicht nachhaltig, also arbeiten wir aktuell daran einen e.V. zu gründen und die Finanzierung zu sichern. Wir freuen uns über alle, die sich einbringen oder helfen möchten.
### Per IBAN spenden
Jhonas Wernery
DE70430609674093197701
GLS Bank
## Impressum
pub.solar n.e.V.
<script>
document.write(
'<p>' +
(['Benjamin Bädorf', 'Jhonas Wernery', 'Hendrik Sokolowki', 'Akshay Mankar']
.sort(() => Math.random() - 0.5)
.join(', ')) +
'</p>'
);
</script>
c/o MiOM Kreativraum e.V.,
Wilhelm-Mauser-Straße 47 Halle 5,
D-50827 Köln,
[crew@pub.solar](mailto:crew@pub.solar)
### Unsere Satzung
Findest Du [hier](https://pub.solar/satzung).
## Unsere Datenschutzerklärung
Findest Du [hier](/privacy).
## Unser Hosting
Wir benutzen einen dedicated Server der Hetzner GmbH, der in einem deutschen Rechenzentrum steht.
Den Quellcode der Infrastruktur kannst du [in diesem git Repo](https://git.pub.solar/pub-solar/infra) einsehen.
The code for the infrastructure can be found [in this git repository](https://git.pub.solar/pub-solar/infra).

BIN
assets/donation-qr.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -1,34 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="2496px" height="224px" viewBox="0 0 2496 224" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>gbv-logo</title>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="gbv-logo" fill-rule="nonzero">
<g id="GREENBAUM" transform="translate(310.708844, 30.000000)" fill="#ABAFAF">
<path d="M83.536,30.872 C67.0406667,30.872 55.1231667,35.4498333 47.7835,44.6055 C40.4438333,53.7611667 36.774,66.284 36.774,82.174 C36.774,89.892 37.682,96.8911667 39.498,103.1715 C41.314,109.451833 44.038,114.862 47.67,119.402 C51.302,123.942 55.842,127.4605 61.29,129.9575 C66.738,132.4545 73.094,133.703 80.358,133.703 C84.2926667,133.703 87.6598333,133.627333 90.4595,133.476 C93.2591667,133.324667 95.7183333,133.022 97.837,132.568 L97.837,77.861 L133.249,77.861 L133.249,155.722 C129.011667,157.386667 122.201667,159.164833 112.819,161.0565 C103.436333,162.948167 91.8593333,163.894 78.088,163.894 C66.284,163.894 55.5771667,162.078 45.9675,158.446 C36.3578333,154.814 28.148,149.517333 21.338,142.556 C14.528,135.594667 9.26916667,127.044333 5.5615,116.905 C1.85383333,106.765667 1.13686838e-13,95.1886667 1.13686838e-13,82.174 C1.13686838e-13,69.008 2.043,57.3553333 6.129,47.216 C10.215,37.0766667 15.8143333,28.4885 22.927,21.4515 C30.0396667,14.4145 38.4008333,9.08 48.0105,5.448 C57.6201667,1.816 67.873,0 78.769,0 C86.1843333,0 92.8808333,0.491833333 98.8585,1.4755 C104.836167,2.45916667 109.9815,3.59416667 114.2945,4.8805 C118.6075,6.16683333 122.163833,7.491 124.9635,8.853 C127.763167,10.215 129.768333,11.2743333 130.979,12.031 L120.764,40.406 C115.921333,37.8333333 110.359833,35.6011667 104.0795,33.7095 C97.7991667,31.8178333 90.9513333,30.872 83.536,30.872 Z" id="Path"></path>
<path d="M212.164289,1.816 C235.772289,1.816 253.856622,6.0155 266.417289,14.4145 C278.977956,22.8135 285.258289,35.866 285.258289,53.572 C285.258289,64.6193333 282.723456,73.5858333 277.653789,80.4715 C272.584122,87.3571667 265.282289,92.7673333 255.748289,96.702 C258.926289,100.636667 262.255622,105.138833 265.736289,110.2085 C269.216956,115.278167 272.659789,120.574833 276.064789,126.0985 C279.469789,131.622167 282.761289,137.372833 285.939289,143.3505 C289.117289,149.328167 292.068289,155.192333 294.792289,160.943 L255.067289,160.943 C252.191956,155.797667 249.278789,150.576667 246.327789,145.28 C243.376789,139.983333 240.350122,134.838 237.247789,129.844 C234.145456,124.85 231.080956,120.120833 228.054289,115.6565 C225.027622,111.192167 222.000956,107.144 218.974289,103.512 L201.495289,103.512 L201.495289,160.943 L166.083289,160.943 L166.083289,5.902 C173.801289,4.38866667 181.784122,3.32933333 190.031789,2.724 C198.279456,2.11866667 205.656956,1.816 212.164289,1.816 Z M214.207289,32.007 C211.634622,32.007 209.326789,32.0826667 207.283789,32.234 C205.240789,32.3853333 203.311289,32.5366667 201.495289,32.688 L201.495289,75.364 L211.483289,75.364 C224.800622,75.364 234.334622,73.6993333 240.085289,70.37 C245.835956,67.0406667 248.711289,61.3656667 248.711289,53.345 C248.711289,45.627 245.798122,40.1411667 239.971789,36.8875 C234.145456,33.6338333 225.557289,32.007 214.207289,32.007 Z" id="Shape"></path>
<polygon id="Path" points="317.411578 160.943 317.411578 3.632 423.647578 3.632 423.647578 33.369 352.823578 33.369 352.823578 64.241 415.702578 64.241 415.702578 93.297 352.823578 93.297 352.823578 131.206 428.868578 131.206 428.868578 160.943"></polygon>
<polygon id="Path" points="454.892867 160.943 454.892867 3.632 561.128867 3.632 561.128867 33.369 490.304867 33.369 490.304867 64.241 553.183867 64.241 553.183867 93.297 490.304867 93.297 490.304867 131.206 566.349867 131.206 566.349867 160.943"></polygon>
<path d="M697.929156,160.943 C687.789822,142.934333 676.818156,125.152667 665.014156,107.598 C653.210156,90.0433333 640.649489,73.4723333 627.332156,57.885 L627.332156,160.943 L592.374156,160.943 L592.374156,3.632 L621.203156,3.632 C626.197156,8.626 631.720822,14.755 637.774156,22.019 C643.827489,29.283 649.994322,37.0388333 656.274656,45.2865 C662.554989,53.5341667 668.797489,62.0845 675.002156,70.9375 C681.206822,79.7905 687.033156,88.303 692.481156,96.475 L692.481156,3.632 L727.666156,3.632 L727.666156,160.943 L697.929156,160.943 Z" id="Path"></path>
<path d="M816.342444,162.986 C807.716444,162.986 799.128278,162.721167 790.577944,162.1915 C782.027611,161.661833 773.136778,160.413333 763.905444,158.446 L763.905444,5.902 C771.169444,4.54 779.114444,3.5185 787.740444,2.8375 C796.366444,2.1565 804.387111,1.816 811.802444,1.816 C821.790444,1.816 830.983944,2.53483333 839.382944,3.9725 C847.781944,5.41016667 855.008111,7.86933333 861.061444,11.35 C867.114778,14.8306667 871.843944,19.4085 875.248944,25.0835 C878.653944,30.7585 880.356444,37.7576667 880.356444,46.081 C880.356444,58.6416667 874.303111,68.554 862.196444,75.818 C872.184444,79.6013333 878.994444,84.7466667 882.626444,91.254 C886.258444,97.7613333 888.074444,105.101 888.074444,113.273 C888.074444,129.768333 882.058944,142.177667 870.027944,150.501 C857.996944,158.824333 840.101778,162.986 816.342444,162.986 Z M798.409444,92.389 L798.409444,133.022 C800.982111,133.324667 803.781778,133.551667 806.808444,133.703 C809.835111,133.854333 813.164444,133.93 816.796444,133.93 C827.389778,133.93 835.940111,132.416667 842.447444,129.39 C848.954778,126.363333 852.208444,120.764 852.208444,112.592 C852.208444,105.328 849.484444,100.144833 844.036444,97.0425 C838.588444,93.9401667 830.794778,92.389 820.655444,92.389 L798.409444,92.389 Z M798.409444,65.376 L815.661444,65.376 C826.557444,65.376 834.351111,63.9761667 839.042444,61.1765 C843.733778,58.3768333 846.079444,53.8746667 846.079444,47.67 C846.079444,41.314 843.658111,36.8496667 838.815444,34.277 C833.972778,31.7043333 826.860111,30.418 817.477444,30.418 C814.450778,30.418 811.197111,30.4558333 807.716444,30.5315 C804.235778,30.6071667 801.133444,30.7963333 798.409444,31.099 L798.409444,65.376 Z" id="Shape"></path>
<path d="M1017.15673,160.943 C1015.49207,155.495 1013.63823,149.895667 1011.59523,144.145 C1009.55223,138.394333 1007.54707,132.643667 1005.57973,126.893 L944.289733,126.893 C942.3224,132.643667 940.317233,138.394333 938.274233,144.145 C936.231233,149.895667 934.3774,155.495 932.712733,160.943 L895.938733,160.943 C901.840733,143.993667 907.440067,128.330667 912.736733,113.954 C918.0334,99.5773333 923.216567,86.033 928.286233,73.321 C933.3559,60.609 938.3499,48.5401667 943.268233,37.1145 C948.186567,25.6888333 953.294067,14.528 958.590733,3.632 L992.413733,3.632 C997.559067,14.528 1002.62873,25.6888333 1007.62273,37.1145 C1012.61673,48.5401667 1017.64857,60.609 1022.71823,73.321 C1027.7879,86.033 1032.97107,99.5773333 1038.26773,113.954 C1043.5644,128.330667 1049.16373,143.993667 1055.06573,160.943 L1017.15673,160.943 Z M974.707733,39.271 C973.951067,41.541 972.816067,44.6433333 971.302733,48.578 C969.7894,52.5126667 968.049067,57.0526667 966.081733,62.198 C964.1144,67.3433333 961.9579,73.0183333 959.612233,79.223 C957.266567,85.4276667 954.883067,91.935 952.461733,98.745 L997.180733,98.745 C994.7594,91.935 992.413733,85.4276667 990.143733,79.223 C987.873733,73.0183333 985.717233,67.3433333 983.674233,62.198 C981.631233,57.0526667 979.853067,52.5126667 978.339733,48.578 C976.8264,44.6433333 975.615733,41.541 974.707733,39.271 Z" id="Shape"></path>
<path d="M1127.85202,164.121 C1116.80469,164.121 1107.27069,162.569833 1099.25002,159.4675 C1091.22936,156.365167 1084.60852,152.052167 1079.38752,146.5285 C1074.16652,141.004833 1070.30752,134.421833 1067.81052,126.7795 C1065.31352,119.137167 1064.06502,110.700333 1064.06502,101.469 L1064.06502,3.632 L1099.47702,3.632 L1099.47702,98.518 C1099.47702,104.874 1100.19586,110.284167 1101.63352,114.7485 C1103.07119,119.212833 1105.03852,122.844833 1107.53552,125.6445 C1110.03252,128.444167 1113.05919,130.449333 1116.61552,131.66 C1120.17186,132.870667 1124.06869,133.476 1128.30602,133.476 C1136.93202,133.476 1143.93119,130.827667 1149.30352,125.531 C1154.67586,120.234333 1157.36202,111.23 1157.36202,98.518 L1157.36202,3.632 L1192.77402,3.632 L1192.77402,101.469 C1192.77402,110.700333 1191.48769,119.175 1188.91502,126.893 C1186.34236,134.611 1182.40769,141.231833 1177.11102,146.7555 C1171.81436,152.279167 1165.08002,156.554333 1156.90802,159.581 C1148.73602,162.607667 1139.05069,164.121 1127.85202,164.121 Z" id="Path"></path>
<path d="M1268.51131,3.632 C1271.23531,8.626 1274.37548,14.7928333 1277.93181,22.1325 C1281.48814,29.4721667 1285.19581,37.4171667 1289.05481,45.9675 C1292.91381,54.5178333 1296.73498,63.2573333 1300.51831,72.186 C1304.30164,81.1146667 1307.85798,89.5136667 1311.18731,97.383 C1314.51664,89.5136667 1318.07298,81.1146667 1321.85631,72.186 C1325.63964,63.2573333 1329.46081,54.5178333 1333.31981,45.9675 C1337.17881,37.4171667 1340.88648,29.4721667 1344.44281,22.1325 C1347.99914,14.7928333 1351.13931,8.626 1353.86331,3.632 L1386.09731,3.632 C1387.61064,14.074 1389.01048,25.7645 1390.29681,38.7035 C1391.58314,51.6425 1392.71814,65.1111667 1393.70181,79.1095 C1394.68548,93.1078333 1395.59348,107.144 1396.42581,121.218 C1397.25814,135.292 1397.97698,148.533667 1398.58231,160.943 L1364.07831,160.943 C1363.62431,145.658333 1363.01898,129.011667 1362.26231,111.003 C1361.50564,92.9943333 1360.37064,74.8343333 1358.85731,56.523 C1356.13331,62.879 1353.10664,69.916 1349.77731,77.634 C1346.44798,85.352 1343.15648,93.07 1339.90281,100.788 C1336.64914,108.506 1333.50898,115.8835 1330.48231,122.9205 C1327.45564,129.9575 1324.88298,135.973 1322.76431,140.967 L1298.02131,140.967 C1295.90264,135.973 1293.32998,129.9575 1290.30331,122.9205 C1287.27664,115.8835 1284.13648,108.506 1280.88281,100.788 C1277.62914,93.07 1274.33764,85.352 1271.00831,77.634 C1267.67898,69.916 1264.65231,62.879 1261.92831,56.523 C1260.41498,74.8343333 1259.27998,92.9943333 1258.52331,111.003 C1257.76664,129.011667 1257.16131,145.658333 1256.70731,160.943 L1222.20331,160.943 C1222.80864,148.533667 1223.52748,135.292 1224.35981,121.218 C1225.19214,107.144 1226.10014,93.1078333 1227.08381,79.1095 C1228.06748,65.1111667 1229.20248,51.6425 1230.48881,38.7035 C1231.77514,25.7645 1233.17498,14.074 1234.68831,3.632 L1268.51131,3.632 Z" id="Path"></path>
</g>
<g id="CLOUD" transform="translate(1782.000000, 30.000000)" fill="#47B04B">
<path d="M71.732,164.121 C61.5926667,164.121 52.1721667,162.305 43.4705,158.673 C34.7688333,155.041 27.2021667,149.744333 20.7705,142.783 C14.3388333,135.821667 9.26916667,127.2335 5.5615,117.0185 C1.85383333,106.8035 -2.27373675e-13,95.113 -2.27373675e-13,81.947 C-2.27373675e-13,68.781 2.00516667,57.0905 6.0155,46.8755 C10.0258333,36.6605 15.3603333,28.0723333 22.019,21.111 C28.6776667,14.1496667 36.3956667,8.89083333 45.173,5.3345 C53.9503333,1.77816667 63.106,2.27373675e-13 72.64,2.27373675e-13 C78.542,2.27373675e-13 83.9143333,0.378333333 88.757,1.135 C93.5996667,1.89166667 97.837,2.8375 101.469,3.9725 C105.101,5.1075 108.203333,6.2425 110.776,7.3775 C113.348667,8.5125 115.316,9.534 116.678,10.442 L111.684,23.835 C107.900667,21.565 103.095833,19.3328333 97.2695,17.1385 C91.4431667,14.9441667 84.217,13.847 75.591,13.847 C65.7543333,13.847 57.1661667,15.5116667 49.8265,18.841 C42.4868333,22.1703333 36.32,26.8616667 31.326,32.915 C26.332,38.9683333 22.5865,46.1566667 20.0895,54.48 C17.5925,62.8033333 16.344,72.0346667 16.344,82.174 C16.344,92.616 17.5925,102.0365 20.0895,110.4355 C22.5865,118.8345 26.2563333,125.985 31.099,131.887 C35.9416667,137.789 41.8815,142.329 48.9185,145.507 C55.9555,148.685 64.014,150.274 73.094,150.274 C83.082,150.274 91.4431667,149.328167 98.1775,147.4365 C104.911833,145.544833 110.019333,143.615333 113.5,141.648 L117.813,154.814 C116.753667,155.570667 114.937667,156.440833 112.365,157.4245 C109.792333,158.408167 106.538667,159.429667 102.604,160.489 C98.6693333,161.548333 94.1293333,162.4185 88.984,163.0995 C83.8386667,163.7805 78.088,164.121 71.732,164.121 Z" id="Path"></path>
<polygon id="Path" points="234.037 147.323 234.037 160.716 144.599 160.716 144.599 3.405 160.035 3.405 160.035 147.323"></polygon>
<path d="M399.747,81.947 C399.747,95.4156667 397.779667,107.295333 393.845,117.586 C389.910333,127.876667 384.575833,136.464833 377.8415,143.3505 C371.107167,150.236167 363.275667,155.419333 354.347,158.9 C345.418333,162.380667 335.96,164.121 325.972,164.121 C315.984,164.121 306.525667,162.380667 297.597,158.9 C288.668333,155.419333 280.836833,150.236167 274.1025,143.3505 C267.368167,136.464833 262.033667,127.876667 258.099,117.586 C254.164333,107.295333 252.197,95.4156667 252.197,81.947 C252.197,68.4783333 254.164333,56.6365 258.099,46.4215 C262.033667,36.2065 267.368167,27.6561667 274.1025,20.7705 C280.836833,13.8848333 288.668333,8.70166667 297.597,5.221 C306.525667,1.74033333 315.984,2.27373675e-13 325.972,2.27373675e-13 C335.96,2.27373675e-13 345.418333,1.74033333 354.347,5.221 C363.275667,8.70166667 371.107167,13.8848333 377.8415,20.7705 C384.575833,27.6561667 389.910333,36.2065 393.845,46.4215 C397.779667,56.6365 399.747,68.4783333 399.747,81.947 Z M383.403,81.947 C383.403,71.3536667 382.041,61.8575 379.317,53.4585 C376.593,45.0595 372.734,37.909 367.74,32.007 C362.746,26.105 356.7305,21.6028333 349.6935,18.5005 C342.6565,15.3981667 334.749333,13.847 325.972,13.847 C317.194667,13.847 309.2875,15.3981667 302.2505,18.5005 C295.2135,21.6028333 289.198,26.105 284.204,32.007 C279.21,37.909 275.351,45.0595 272.627,53.4585 C269.903,61.8575 268.541,71.3536667 268.541,81.947 C268.541,92.5403333 269.903,102.0365 272.627,110.4355 C275.351,118.8345 279.21,125.985 284.204,131.887 C289.198,137.789 295.2135,142.329 302.2505,145.507 C309.2875,148.685 317.194667,150.274 325.972,150.274 C334.749333,150.274 342.6565,148.685 349.6935,145.507 C356.7305,142.329 362.746,137.789 367.74,131.887 C372.734,125.985 376.593,118.8345 379.317,110.4355 C382.041,102.0365 383.403,92.5403333 383.403,81.947 Z" id="Shape"></path>
<path d="M491.001,164.121 C480.559,164.121 471.668167,162.532 464.3285,159.354 C456.988833,156.176 451.049,151.787333 446.509,146.188 C441.969,140.588667 438.6775,134.0435 436.6345,126.5525 C434.5915,119.0615 433.57,111.003 433.57,102.377 L433.57,3.405 L449.006,3.405 L449.006,100.334 C449.006,108.96 450.0275,116.413167 452.0705,122.6935 C454.1135,128.973833 456.951,134.157 460.583,138.243 C464.215,142.329 468.603667,145.355667 473.749,147.323 C478.894333,149.290333 484.645,150.274 491.001,150.274 C497.357,150.274 503.107667,149.290333 508.253,147.323 C513.398333,145.355667 517.787,142.329 521.419,138.243 C525.051,134.157 527.8885,128.973833 529.9315,122.6935 C531.9745,116.413167 532.996,108.96 532.996,100.334 L532.996,3.405 L548.432,3.405 L548.432,102.377 C548.432,111.003 547.4105,119.0615 545.3675,126.5525 C543.3245,134.0435 540.033,140.588667 535.493,146.188 C530.953,151.787333 525.013167,156.176 517.6735,159.354 C510.333833,162.532 501.443,164.121 491.001,164.121 Z" id="Path"></path>
<path d="M713.461,81.947 C713.461,95.4156667 711.342333,107.144 707.105,117.132 C702.867667,127.12 696.927833,135.443333 689.2855,142.102 C681.643167,148.760667 672.525333,153.754667 661.932,157.084 C651.338667,160.413333 639.686,162.078 626.974,162.078 C620.618,162.078 613.959333,161.7375 606.998,161.0565 C600.036667,160.3755 593.907667,159.354 588.611,157.992 L588.611,6.356 C593.907667,4.84266667 600.036667,3.7455 606.998,3.0645 C613.959333,2.3835 620.618,2.043 626.974,2.043 C639.686,2.043 651.338667,3.70766667 661.932,7.037 C672.525333,10.3663333 681.643167,15.3603333 689.2855,22.019 C696.927833,28.6776667 702.867667,37.001 707.105,46.989 C711.342333,56.977 713.461,68.6296667 713.461,81.947 Z M604.047,147.096 C604.955,147.247333 607.262833,147.55 610.9705,148.004 C614.678167,148.458 620.618,148.685 628.79,148.685 C640.14,148.685 650.052333,147.133833 658.527,144.0315 C667.001667,140.929167 674.114333,136.502667 679.865,130.752 C685.615667,125.001333 689.928667,118.002167 692.804,109.7545 C695.679333,101.506833 697.117,92.2376667 697.117,81.947 C697.117,71.6563333 695.679333,62.425 692.804,54.253 C689.928667,46.081 685.615667,39.1196667 679.865,33.369 C674.114333,27.6183333 667.001667,23.1918333 658.527,20.0895 C650.052333,16.9871667 640.14,15.436 628.79,15.436 C620.618,15.436 614.678167,15.663 610.9705,16.117 C607.262833,16.571 604.955,16.8736667 604.047,17.025 L604.047,147.096 Z" id="Shape"></path>
</g>
<g id="Group-Copy">
<g id="Path" fill="#ABAFAF">
<path d="M187.994932,133.21189 L140.549624,133.21189 L140.549624,90.6287065 L187.994932,90.6287065 L187.994932,90.5048934 L236.337666,90.6287065 L236.337666,208.706214 C236.337666,208.70627 236.337666,208.706326 236.337666,208.706382 C236.337666,217.152896 229.03106,224 220.0181,224 L195.727208,224 L51.2910441,224 L32.6390675,224 C32.638984,224 32.6389004,224 32.638817,224 C14.6128961,224 0,210.305476 0,193.412448 L0,30.5875332 C0,13.6945051 14.6131467,0 32.6390675,0 L51.2910441,0 L141.685281,0 L141.685281,45.8181025 L56.501544,45.8181025 C51.9950638,45.8181025 48.3418398,49.2417288 48.3418398,53.4649858 L48.3341239,170.534626 C48.3341239,170.537037 48.3341252,170.539449 48.3341276,170.54186 C48.3383909,174.765115 51.9950692,178.185501 56.5015477,178.181506 L187.994932,178.057696 L187.994932,133.21189 Z"></path>
</g>
<g id="Path" transform="translate(190.129735, 0.000000)" fill="#47B04B">
<polygon points="0 44.8617153 47.8702648 44.8617153 47.8702648 0 0 0"></polygon>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 17 KiB

91
de/about.yml Normal file
View File

@ -0,0 +1,91 @@
layout: layouts/default.tsx
title: Über uns & Impressum
content: |
# Hi! Wir sind pub.solar
Wir sind ein nicht eingetragener Verein mit Sitz in Köln. Unser Ziel ist es mehr Menschen zu ermöglichen, Freie Software zu benutzen, sicher digital zu kommunizieren, und datensparsamer zu leben.
Wir stellen für Dich und alle Menschen die Du lieb hast auf transparente und demokratische Weise freie Software zur Verfügung.
Momentan bieten wir diese Services an:
* [Matrix](https://chat.pub.solar): dezentraler, Ende-zu-Ende verschlüsselter Chat, ähnlich wie Slack oder Discord,
* [Mastodon](https://mastodon.pub.solar): dezentrale Mikrobloggingplattform, ähnlich wie Twitter,
* [Nextcloud](https://cloud.pub.solar): Cloud mit Office Möglichkeiten, ähnlich wie Teile der Google Suite und Microsoft Office 365,
* [Forgejo](https://git.pub.solar/): ein git Server, ähnlich wie GitHub oder Gitlab.
Ausserdem bieten wir folgende Services an, die jederzeit geändert werden oder verschwinden könnten:
* [Searx](https://search.pub.solar/): eine Meta-Suchmachine, ähnlich wie Google oder Bing,
* [Mailman](https://lists.pub.solar/): eine Software für Mailing-Listen,
* [OBS Portal](https://obs-portal.pub.solar/): ein Server um [OpenBikeSensor](https://www.openbikesensor.org/)-Daten zu speichern, begrenzt auf die Region Köln/Bonn.
Für manche dieser Services musst du einen Account registrieren, bei uns heißt der [pub.solar ID](https://auth.pub.solar). Die Registrierung ist für alle offen. Bei der Nextcloud ist der Speicherplatz allerdings stark begrenzt. Falls du Speicherplatz in der Nextcloud haben willst, kontaktiere die Crew.
## Kontakt und Hilfe
Du kannst uns via [#General in Matrix](https://matrix.to/#/#general:pub.solar?via=chat.pub.solar) und [@crew auf Mastodon](https://mastodon.pub.solar/@crew) erreichen, oder eine Mail an [crew@pub.solar](mailto:crew@pub.solar) schicken.
Unseren PGP Schlüssel findest du [hier](https://keys.openpgp.org/vks/v1/by-fingerprint/8A8987ADE3736C8CA2EB315A9B809EBBDD62BAE3). Er hat folgenden Fingerabdruck:
```
8A89 87AD E373 6C8C A2EB 315A 9B80 9EBB DD62 BAE3
```
Schau dir bei Fragen gerne unser [wiki](https://wiki.pub.solar) an oder kontaktiere uns über einen der oben genannten Kanäle. Im Matrix [#General Raum](https://matrix.to/#/#general:pub.solar?via=chat.pub.solar) gibt es immer Menschen, die gerne deine Fragen beantworten.
## Mitglied oder Helfer*in werden
Bist du daran interessiert ein Mitglied von pub.solar n.e.V. zu werden? Du würdest die Organisation gerne mit Arbeit, Geld, oder einfach nur deinen Namen unterstützen?
Momentan sind wir ein nicht eingetragener Verein. Das bedeutet das wir juristisch eine Gruppe einzelner Personen sind (wie eine GbR) und der Verein nicht haften oder als juristische Person existiert. Unser Ziel ist es einen eingetragener Verein (e.V.) zu gründen.
Wir suchen immer nach Hilfe und Unterstützung. Eine Mitgliedschaft ist momentan weder mit Kosten noch Vorteile verbunden, und sollte eher ein Zeichen der Unterstützung sein. Wir ermutigen jede*n ein Mitglied zu werden, sogar (oder, vor allem) wenn du nicht sehr technisch bewandert bist. Unser Ziel ist es pub.solar zu einer Organisation zu machen die _allen_ hilft, vor allem Menschen die selbständig nicht in der Lage wären IT-Infrastruktur zu verwalten. Wir wollen dir eine Stimme in den Entscheidungen bezüglich deiner IT-Services geben. Wir wollen, dass die Community gemeinsam entscheidet wie IT die mit Solidarität, Freiheit, Privacy, und gegenseite Unterstützung gebaut wird aussieht.
Klingt nach deinem Ding? Schon ne Ahnung was du machen willst? Keine Ahnung was du machen willst? Schick die Crew ne Nachricht, wir freuen uns von dir zu hören!
## Finanzierung
Die laufenden Kosten zahlen wir momentan aus eigener Tasche (wie der Server + die Domain).
Diese Situation ist nicht nachhaltig, also arbeiten wir aktuell daran einen e.V. zu gründen und die Finanzierung zu sichern. Wir freuen uns über alle, die sich einbringen oder helfen möchten.
### Per IBAN spenden
Jhonas Wernery
DE70430609674093197701
GLS Bank
![QR GiroCode](/assets/donation-qr.png)
## Impressum
pub.solar n.e.V.
<script>
document.write(
'<p>' +
(['Benjamin Bädorf', 'Jhonas Wernery', 'Hendrik Sokolowki', 'Akshay Mankar']
.sort(() => Math.random() - 0.5)
.join(', ')) +
'</p>'
);
</script>
c/o MiOM Kreativraum e.V.,
Wilhelm-Mauser-Straße 47 Halle 5,
D-50827 Köln,
[crew@pub.solar](mailto:crew@pub.solar)
### Unsere Satzung
Findest Du [hier](https://pub.solar/satzung).
## Unsere Datenschutzerklärung
Findest Du [hier](/privacy).
## Unser Hosting
Wir benutzen einen dedicated Server der Hetzner GmbH, der in einem deutschen Rechenzentrum steht.
Den Quellcode der Infrastruktur kannst du [in diesem git Repo](https://git.pub.solar/pub-solar/infra) einsehen.

49
de/hakken.yml Normal file
View File

@ -0,0 +1,49 @@
layout: layouts/default.tsx
title: hakken.irl
showHakkenDates: true
content: |
# hakken.irl
Du bist eingeladen!
Wir treffen uns (fast) alle drei Monate zum hakken.irl, ein kleiner 3-Tägiger (Freitag bis Sonntag) Hackathon bei dem es nur darum geht Spaß zu haben und abzunerden.
## Was machen wir denn so?
Es gibt nur einen festen Programmpunkt: bei der Critical Mass mitradeln. Tendenziell hakken wir danach an pub.solar Sachen, wie [unserer Infrastruktur](https://git.pub.solar/pub-solar/infra "pub.solar infra repo").
Ein paar Beispiele:
* [die Infrastruktur auf NixOS 23.11 aktualisieren](https://git.pub.solar/pub-solar/infra/pulls/74),
* [unsere Website auf einen neuen Server migrieren](https://git.pub.solar/pub-solar/infra/pulls/20),
* [die Standardinhalte des Nextcloud Verzeichnis für neue User definieren](https://git.pub.solar/pub-solar/infra/pulls/73),
* [Matrix vhosts in nginx konfigurieren](https://git.pub.solar/pub-solar/infra/pulls/33),
* digitale Animationen kreieren,
* Fotos bearbeiten und Musik machen,
* Wizard, Karten, und Brettspiele zocken,
* kochen, bestellen, und gemeinsam essen,
* und über die FDP herziehen.
## Ist das also nur für über-nerds?
Es geht schon ziemlich nerdy zu, und du solltest auf jeden Fall deinen Laptop dabei haben. Allerdings ist es uns eigentlich egal, wie du deine Zeit verbringst. Im besten Falle kannst du dich auch allein mit einem eigenen Projekt beschäftigen. Wir benutzen den Raum zum gemeinsamen Arbeiten und Austauschen, aber wenn der Vibe passt, kannst du dich auch gerne dazu setzen und nur Spiele zocken.
## Was kostet das?
Die Teilnahme kostet nichts, aber wenn wir mal Essen bestellen oder beim Kiosk was holen wärs cool wenn du etwas dazu gibst. Eine kleine Spende an den Verein ist auch immer gerne gesehen.
## Wo schlafe ich?
Falls du keine (bezahlbare, coole, sichere) Übernachtungsmöglichkeit finden kannst, dann rede mit uns. Wir kriegen garantiert einen Schlafplatz organisiert.
## Wo melde ich mich an?
Schreib uns kurz eine Nachricht. Du kannst uns via [Matrix](https://matrix.to/#/#general:pub.solar?via=chat.pub.solar) und [Mastodon](https://mastodon.pub.solar/@crew) erreichen, oder schick uns eine Mail an [crew@pub.solar](mailto:crew@pub.solar).
## Und wann findet das statt?
hakken.irl startet am letzten Freitag im Monat um 13:12 und geht bis Sonntag 16:20.
Wir treffen uns alle drei Monate, üblicherweise im Januar, April, Juli und Oktober.

24
de/index.yml Normal file
View File

@ -0,0 +1,24 @@
layout: layouts/homepage.tsx
content: |
# Willkommen bei pub.solar
Wir sind eine freundliche Gemeinschaft, die an einem digitalen Pub an der Ecke werkelt.
Unser Ziel ist es mehr Menschen zu ermöglichen, Freie Software zu benutzen, sicher digital zu kommunizieren, und datensparsamer zu leben.
Wir stellen freie Software für Dich und alle Menschen, die Du lieb hast, auf transparente und demokratische Weise zur Verfügung.
***Fucking free***
links:
- href: ./services
title: Unsere Services
- href: https://auth.pub.solar/realms/pub.solar/account
title: Deine pub.solar ID
- href: ./hakken
title: hakken.irl
- href: ./about
title: Über uns
- href: ./privacy
title: Datenschutz

16
de/maintenance.yml Normal file
View File

@ -0,0 +1,16 @@
layout: layouts/error.tsx
title: Scheduled maintenance
content: |
# Scheduled maintenance
This service is currently undergoing scheduled maintenance.
Sorry for the inconvenience :)
Check our [status page](https://stats.uptimerobot.com/G28ByiBg8j) for more information.
Love,
the pub.solar crew

8
de/privacy.yml Normal file
View File

@ -0,0 +1,8 @@
layout: layouts/default.tsx
title: Privacy Policy
content: |
**Es gibt momentan leider keine Deutsche Version unserer Datenschutzerklärung.**
Falls Du unbedingt eine sehen willst, dann kontaktiere die Crew damit wir das Thema höher priorisieren können.

17
de/services.yml Normal file
View File

@ -0,0 +1,17 @@
layout: layouts/default.tsx
title: Unsere Dienste
showServices: true
content: |
# Unsere Dienste
Diese Seite gibt einen Überblick über die Dienste, die wir hosten. Wir geben einige Informationen über den Support-Status und den Datenschutz für jeden Dienst.
* [Nextcloud](#nextcloud)
* [Mastodon](#mastodon)
* [Matrix](#matrix)
* [Forgejo / git](#forgejo)
* [Mailman](#mailman)
* [Wiki](#wiki)
* [Searx](#searx)

View File

@ -5,11 +5,11 @@
"nixpkgs-lib": "nixpkgs-lib"
},
"locked": {
"lastModified": 1701473968,
"narHash": "sha256-YcVE5emp1qQ8ieHUnxt1wCZCC3ZfAS+SRRWZ2TMda7E=",
"lastModified": 1712014858,
"narHash": "sha256-sB4SWl2lX95bExY2gMFG5HIzvva5AVMJd4Igm+GpZNw=",
"owner": "hercules-ci",
"repo": "flake-parts",
"rev": "34fed993f1674c8d06d58b37ce1e0fe5eebcb9f5",
"rev": "9126214d0a59633752a136528f5f3b9aa8565b7d",
"type": "github"
},
"original": {
@ -20,11 +20,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1703438236,
"narHash": "sha256-aqVBq1u09yFhL7bj1/xyUeJjzr92fXVvQSSEx6AdB1M=",
"lastModified": 1712608508,
"narHash": "sha256-vMZ5603yU0wxgyQeHJryOI+O61yrX2AHwY6LOFyV1gM=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "5f64a12a728902226210bf01d25ec6cbb9d9265b",
"rev": "4cba8b53da471aea2ab2b0c1f30a81e7c451f4b6",
"type": "github"
},
"original": {
@ -37,11 +37,11 @@
"nixpkgs-lib": {
"locked": {
"dir": "lib",
"lastModified": 1701253981,
"narHash": "sha256-ztaDIyZ7HrTAfEEUt9AtTDNoCYxUdSd6NrRHaYOIxtk=",
"lastModified": 1711703276,
"narHash": "sha256-iMUFArF0WCatKK6RzfUJknjem0H9m4KgorO/p3Dopkk=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "e92039b55bcd58469325ded85d4f58dd5a4eaf58",
"rev": "d8fe5e6c92d0d190646fb9f1056741a229980089",
"type": "github"
},
"original": {

View File

@ -1,5 +1,5 @@
{
description = "devs & ops environment for nix'ing with triton";
description = "pub.solar website";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";

View File

@ -3,93 +3,45 @@ layout: layouts/default.tsx
title: hakken.irl
showHakkenDates: true
content:
en: |
# hakken.irl
content: |
# You're invited!
You're invited!
We meet (almost) every three months for hakken.irl, a small three-day (Friday to Sunday) hackathon that's just about having fun and nerding around.
We meet (almost) every three months for hakken.irl, a small three-day (Friday to Sunday) hackathon that's just about having fun and nerding around.
## What will we be doing?
## What will we be doing?
There is only one set agenda point: riding with Critical Mass. In general, we'll be hakking on pub.solar related stuff like [our Infrastructure](https://git.pub.solar/pub-solar/infra "pub.solar infra repo").
There is only one set agenda point: riding with Critical Mass. In general, we'll be hakking on pub.solar related stuff like [our Infrastructure](https://git.pub.solar/pub-solar/infra "pub.solar infra repo").
Examples include:
Examples include:
* [updating the pub.solar infrastructure servers to NixOS 23.11](https://git.pub.solar/pub-solar/infra/pulls/74),
* [migrating our website to a new server](https://git.pub.solar/pub-solar/infra/pulls/20),
* [defining the default directory contents for new Nextcloud users](https://git.pub.solar/pub-solar/infra/pulls/73),
* [configuring nginx to serve Matrix vhosts](https://git.pub.solar/pub-solar/infra/pulls/33),
* creating digital animations,
* touching up photographs and making music,
* playing Wizard, cards and board games,
* cooking, ordering, and eating together,
* and making fun of neoliberals.
* [updating the pub.solar infrastructure servers to NixOS 23.11](https://git.pub.solar/pub-solar/infra/pulls/74),
* [migrating our website to a new server](https://git.pub.solar/pub-solar/infra/pulls/20),
* [defining the default directory contents for new Nextcloud users](https://git.pub.solar/pub-solar/infra/pulls/73),
* [configuring nginx to serve Matrix vhosts](https://git.pub.solar/pub-solar/infra/pulls/33),
* creating digital animations,
* touching up photographs and making music,
* playing Wizard, cards and board games,
* cooking, ordering, and eating together,
* and making fun of neoliberals.
## So is it just for über-nerds?
## So is it just for über-nerds?
It's pretty nerdy over all, and you should definitely bring your laptop. However we don't really care what you do while you're with us. It's good if you can also entertain yourself with a project. We use the space to work together and connect, but if we vibe you can also just sit with us and play games all day.
It's pretty nerdy over all, and you should definitely bring your laptop. However we don't really care what you do while you're with us. It's good if you can also entertain yourself with a project. We use the space to work together and connect, but if we vibe you can also just sit with us and play games all day.
## What do I have to pay?
## What do I have to pay?
It's free, but if we order food or get some stuff at a kiosk it'd be cool if you chip in. A small donation to the association is also always welcome.
It's free, but if we order food or get some stuff at a kiosk it'd be cool if you chip in. A small donation to the association is also always welcome.
## Where do I sleep?
## Where do I sleep?
If you cannot find an (affordable, cool, safe) place to stay, then talk to us. We'll surely be able to set you up with a place to stay somewhere.
If you cannot find an (affordable, cool, safe) place to stay, then talk to us. We'll surely be able to set you up with a place to stay somewhere.
## Where do I sign up?
## Where do I sign up?
Write us a short message. You can reach us via [Matrix](https://matrix.to/#/#general:pub.solar?via=chat.pub.solar) and [Mastodon](https://mastodon.pub.solar/@crew), or send a mail to [crew@pub.solar](mailto:crew@pub.solar).
Write us a short message. You can reach us via [Matrix](https://matrix.to/#/#general:pub.solar?via=chat.pub.solar) and [Mastodon](https://mastodon.pub.solar/@crew), or send a mail to [crew@pub.solar](mailto:crew@pub.solar).
## When will this happen?
## When will this happen?
hakken.irl starts on the last Friday of the month at 13:12 and ends on Sunday 16:20.
hakken.irl starts on the last Friday of the month at 13:12 and ends on Sunday 16:20.
We're meeting up every three months, typically in January, April, July and October.
de: |
# hakken.irl
Du bist eingeladen!
Wir treffen uns (fast) alle drei Monate zum hakken.irl, ein kleiner 3-Tägiger (Freitag bis Sonntag) Hackathon bei dem es nur darum geht Spaß zu haben und abzunerden.
## Was machen wir denn so?
Es gibt nur einen festen Programmpunkt: bei der Critical Mass mitradeln. Tendenziell hakken wir danach an pub.solar Sachen, wie [unserer Infrastruktur](https://git.pub.solar/pub-solar/infra "pub.solar infra repo").
Ein paar Beispiele:
* [die Infrastruktur auf NixOS 23.11 aktualisieren](https://git.pub.solar/pub-solar/infra/pulls/74),
* [unsere Website auf einen neuen Server migrieren](https://git.pub.solar/pub-solar/infra/pulls/20),
* [die Standardinhalte des Nextcloud Verzeichnis für neue User definieren](https://git.pub.solar/pub-solar/infra/pulls/73),
* [Matrix vhosts in nginx konfigurieren](https://git.pub.solar/pub-solar/infra/pulls/33),
* digitale Animationen kreieren,
* Fotos bearbeiten und Musik machen,
* Wizard, Karten, und Brettspiele zocken,
* kochen, bestellen, und gemeinsam essen,
* und über die FDP herziehen.
## Ist das also nur für über-nerds?
Es geht schon ziemlich nerdy zu, und du solltest auf jeden Fall deinen Laptop dabei haben. Allerdings ist es uns eigentlich egal, wie du deine Zeit verbringst. Im besten Falle kannst du dich auch allein mit einem eigenen Projekt beschäftigen. Wir benutzen den Raum zum gemeinsamen Arbeiten und Austauschen, aber wenn der Vibe passt, kannst du dich auch gerne dazu setzen und nur Spiele zocken.
## Was kostet das?
Die Teilnahme kostet nichts, aber wenn wir mal Essen bestellen oder beim Kiosk was holen wärs cool wenn du etwas dazu gibst. Eine kleine Spende an den Verein ist auch immer gerne gesehen.
## Wo schlafe ich?
Falls du keine (bezahlbare, coole, sichere) Übernachtungsmöglichkeit finden kannst, dann rede mit uns. Wir kriegen garantiert einen Schlafplatz organisiert.
## Wo melde ich mich an?
Schreib uns kurz eine Nachricht. Du kannst uns via [Matrix](https://matrix.to/#/#general:pub.solar?via=chat.pub.solar) und [Mastodon](https://mastodon.pub.solar/@crew) erreichen, oder schick uns eine Mail an [crew@pub.solar](mailto:crew@pub.solar).
## Und wann findet das statt?
hakken.irl startet am letzten Freitag im Monat um 13:12 und geht bis Sonntag 16:20.
Wir treffen uns alle drei Monate, üblicherweise im Januar, April, Juli und Oktober.
We're meeting up every three months, typically in January, April, July and October.

View File

@ -1,26 +1,24 @@
layout: layouts/homepage.tsx
content: |
# Welcome to pub.solar
We're a friendly community creating a digital corner pub.
Our goal is to enable more people to use free software, have secure digital communications, and to take control over their private data.
We host online services for you and all the people you love. We do this transparently and democratically.
***Fucking free***
links:
- href: https://en.wikipedia.org/wiki/Free_software
title: Fucking Free
openInNewTab: true
- href: ./about
title: About us
- href: ./services
title: Our services
- href: https://auth.pub.solar/realms/pub.solar/account
title: Your pub.solar ID
- href: https://cloud.pub.solar/
title: Nextcloud
openInNewTab: true
- href: https://chat.pub.solar/
title: Matrix
openInNewTab: true
- href: https://mastodon.pub.solar/
title: Mastodon
openInNewTab: true
- href: https://git.pub.solar/
title: Git
openInNewTab: true
- href: ./hakken
title: hakken.irl
- href: ./about
title: About us
- href: ./privacy
title: Privacy policy

View File

@ -2,135 +2,125 @@ layout: layouts/default.tsx
title: Privacy Policy
content:
en: |
# Privacy Policy
Information on data privacy and protection for the services operated by pub.solar n.e.V. as required by article 13 DSGVO.
## Services
We run multiple public services:
* our Matrix service, consisting of the "Homeserver"; `https://matrix.pub.solar`, as well as the web-based Element-Messenger ([chat.pub.solar](https://chat.pub.solar/)),
* our Nextcloud service at `https://cloud.pub.solar`,
* our Mastodon service at `https://mastodon.pub.solar`.
* our Gitea service at `https://git.pub.solar`.
* our Keycloak authentication service at `https://auth.pub.solar`.
## Responsible for operating the service
**pub.solar n.e.V.**
Benjamin Bädorf, Jhonas Wernery, Hendrik Sokolowki
c/o MiOM 202
Wilhelm-Mauser-Straße 47 Halle 5,
D-50827 Köln
[crew@pub.solar](mailto:crew@pub.solar)
## Contact for data protection issues
If you have any questions regarding data protection, please contact us at [crew@pub.solar](mailto:crew@pub.solar) or at the postal address given above.
## What is the purpose of the data processing?
"Matrix" is an open, decentralized communication service for real-time communication. It enables members of pub.solar n.e.V., as well as other interested parties, to communicate with other users of this server as well as other Matrix users of federated Matrix servers via chat and audio/video telephony by means of a Matrix account.
## What personal data is processed?
If a user chooses to use any of the services provided by us, the following data will be required and therefore collected by pub.solar in the authentication service:
A valid email address: required for account creation. This email address is deleted from our database after the account has been approved/denied, unless the user chooses during the registration process, to keep it for password reset process.
An username and a password: required to identify the account holder and provide the services offered by pub.solar.
Necessary information related to the operation and functioning of the services which may include, for example, IP address, User Agent, etc. More detailed information about this and how we handle it can be found in the Privacy notices per service.
When a user makes an online donation to pub.solar, we collect personal data such as, but not limited to, username (if any), country (in case of extra storage request for tax purposes), transaction IDs or bank account/reference. The purpose for which we use this data is merely administrative (verification of regular donations, accounting management) and is maintained under the same security measures described in the "How do we store your data?" section. Since all the data we collect is previously processed by a third-party payment processor such as PayPal, Patreon or Liberapay, by using these or similar services, their use of your information is based on their terms of service and policies, not ours, so we encourage you to review those policies carefully.
Any additional information that the user chooses to supply while using the services provided by us (whether it is chats, posts, emails, etc.). This additional information is optional and with the user's consent.
## How long will the personal data be stored?
The personal data will be deleted from our server after 15 months of inactivity. The deletion requests are forwarded to the federated servers. However, we have no influence on their execution.
## Where is the personal data stored?
We run our all of our services on servers of the company [Greenbaum Cloud](https://greenbaum.cloud/).
## Data subject rights
When we process personal data about you, you have the following rights:
* right of access to the data processed and right to obtain a copy of it,
* right of rectification if we process incorrect data about you,
* right to deletion, unless exceptions apply as to why we are still storing the data, for example, retention obligations or limitation periods
* right to restriction of processing,
* right to withdraw consent to data processing at any time,
* right to object to processing in the public or legitimate interest,
* right to data portability,
* right to lodge a complaint with a data protection supervisory authority if you believe that we are not processing your data properly. The State Commissioner for Data Protection and Freedom of Information in Nordrhein-Westfalen is responsible in our case. However, if you are in another federal state or not in Germany, you can also contact the data protection authority there.
## What we do not do with your data
We do not collect any other data than what is needed to provide you the service.
We do not, in any way, process, analyze your behavior or personal characteristics to create profiles about you or your usage of the services. We have no advertisements or business relationships with advertisers.
We do not sell your data to any third party.
We do not share your data to any third party unless in case of federated services which requires certain data to be shared in order to operate (e.g. other email service provider needs to know your email address to be able to deliver emails).
We do not require any additional information that is not crucial for the operation of the service (we do not ask for phone numbers, private personal data, home address).
We do not read/look nor process your personal data, emails, files, etc., stored on our servers unless needed for providing the service, troubleshooting purposes or under suspicion of breaking our Terms Of Services in which case we ask for prior permission from you or inform you afterwards of all actions taken against the account in the transparency report addressed to account holder.
## Privacy Policy per service
### Cloud
Our cloud runs Nextcloud.
This service requires login with pub.solar credentials.
Everything (files, calendars, contacts, news, tasks, bookmarks, etc.) is stored unencrypted in a database, unless an application provides external encryption (none so far). This is a limitation of the software we are utilizing for this service (Nextcloud).
We do not currently encrypt files when you upload them because we've had some bad experiences with dataloss incurred through end-to-end encryption.
Server logs, which store information such as, but not limited to, your IP address, your username, an app currently used, error messages and User Agent, are stored for a period of 24 hours after which they are deleted from the server. No backup of log files is created. Logs are kept to prevent brute-force attacks on accounts and to provide quick insight when debugging issues.
### Git
This service requires login with pub.solar credentials.
Server logs, which store information such as, but not limited to, your IP address, your username, error messages and User Agent, are stored for a period of 24 hours after which they are deleted from the server. No backup of log files is created. Logs are kept to prevent brute-force attacks on accounts and to provide quick insight when debugging issues.
All git data such as, but not limited to, usernames, email addresses, messages, code, files, versions, pull requests, etc., are stored on the server in the database as is (plain-text).
### Matrix
content: |
# Privacy Policy
This service requires login with pub.solar credentials.
Information on data privacy and protection for the services operated by pub.solar n.e.V. as required by article 13 DSGVO.
Server logs, which store information such as, but not limited to, your IP address, your username, error messages and User Agent, are stored for a period of 24 hours after which they are deleted from the server. No backup of log files is created. Logs are kept to prevent brute-force attacks on accounts and to provide quick insight when debugging issues.
## Services
We run multiple public services:
All git data such as, but not limited to, usernames, email addresses, messages, code, files, versions, pull requests, etc., are stored on the server in the database as is (plain-text).
* our Matrix service, consisting of the "Homeserver"; `https://matrix.pub.solar`, as well as the web-based Element-Messenger ([chat.pub.solar](https://chat.pub.solar/)),
* our Nextcloud service at `https://cloud.pub.solar`,
* our Mastodon service at `https://mastodon.pub.solar`.
* our Gitea service at `https://git.pub.solar`.
* our Keycloak authentication service at `https://auth.pub.solar`.
### Mastodon
## Responsible for operating the service
This service requires login with pub.solar credentials.
Basic account information: If you register on this server, you may be asked to enter a username, an e-mail address and a password. You may also enter additional profile information such as a display name and biography, and upload a profile picture and header image. The username, display name, biography, profile picture and header image are always listed publicly.
**pub.solar n.e.V.**
Benjamin Bädorf, Jhonas Wernery, Hendrik Sokolowki
c/o MiOM 202
Wilhelm-Mauser-Straße 47 Halle 5,
D-50827 Köln
[crew@pub.solar](mailto:crew@pub.solar)
Posts, following and other public information: The list of people you follow is listed publicly, the same is true for your followers. When you submit a message, the date and time is stored as well as the application you submitted the message from. Messages may contain media attachments, such as pictures and videos. Public and unlisted posts are available publicly. When you feature a post on your profile, that is also publicly available information. Your posts are delivered to your followers, in some cases it means they are delivered to different servers and copies are stored there. When you delete posts, this is likewise delivered to your followers. The action of reblogging or favouriting another post is always public.
## Contact for data protection issues
If you have any questions regarding data protection, please contact us at [crew@pub.solar](mailto:crew@pub.solar) or at the postal address given above.
Direct and followers-only posts: All posts are stored and processed on the server. Followers-only posts are delivered to your followers and users who are mentioned in them, and direct posts are delivered only to users mentioned in them. In some cases it means they are delivered to different servers and copies are stored there. We make a good faith effort to limit the access to those posts only to authorized persons, but other servers may fail to do so. Therefore it's important to review servers your followers belong to. You may toggle an option to approve and reject new followers manually in the settings. Please keep in mind that the operators of the server and any receiving server may view such messages, and that recipients may screenshot, copy or otherwise re-share them. Do not share any sensitive information over Mastodon.
## What personal data is processed?
If a user chooses to use any of the services provided by us, the following data will be required and therefore collected by pub.solar in the authentication service:
IPs and other metadata: When you log in, we record the IP address you log in from, as well as the name of your browser application. All the logged in sessions are available for your review and revocation in the settings. The latest IP address used is stored for up to 12 months. We also may retain server logs which include the IP address of every request to our server.
A valid email address: required for account creation. This email address is deleted from our database after the account has been approved/denied, unless the user chooses during the registration process, to keep it for password reset process.
## References/License
We have created the basic structure of this data protection information with the help of [DS-GVO.clever-Tools](https://www.baden-wuerttemberg.datenschutz.de/ds-gvo.clever/) and adapted it to our needs. We have also used parts of [Datenschutzerklärung der TU-Dresden](https://doc.matrix.tu-dresden.de/privacy/) and adjusted them accordingly. Text is licensed [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/deed.de).
An username and a password: required to identify the account holder and provide the services offered by pub.solar.
de: |
**Es gibt momentan leider keine Deutsche Version unserer Datenschutzerklärung.**
Necessary information related to the operation and functioning of the services which may include, for example, IP address, User Agent, etc. More detailed information about this and how we handle it can be found in the Privacy notices per service.
Falls Du unbedingt eine sehen willst, dann kontaktiere die Crew damit wir das Thema höher priorisieren können.
When a user makes an online donation to pub.solar, we collect personal data such as, but not limited to, username (if any), country (in case of extra storage request for tax purposes), transaction IDs or bank account/reference. The purpose for which we use this data is merely administrative (verification of regular donations, accounting management) and is maintained under the same security measures described in the "How do we store your data?" section. Since all the data we collect is previously processed by a third-party payment processor such as PayPal, Patreon or Liberapay, by using these or similar services, their use of your information is based on their terms of service and policies, not ours, so we encourage you to review those policies carefully.
Any additional information that the user chooses to supply while using the services provided by us (whether it is chats, posts, emails, etc.). This additional information is optional and with the user's consent.
## How long will the personal data be stored?
The personal data will be deleted from our server after 15 months of inactivity. The deletion requests are forwarded to the federated servers. However, we have no influence on their execution.
## Where is the personal data stored?
We run our all of our services on servers of the company [Hetzner Online GmbH](https://hetzner.com/).
## Data subject rights
When we process personal data about you, you have the following rights:
* right of access to the data processed and right to obtain a copy of it,
* right of rectification if we process incorrect data about you,
* right to deletion, unless exceptions apply as to why we are still storing the data, for example, retention obligations or limitation periods
* right to restriction of processing,
* right to withdraw consent to data processing at any time,
* right to object to processing in the public or legitimate interest,
* right to data portability,
* right to lodge a complaint with a data protection supervisory authority if you believe that we are not processing your data properly. The State Commissioner for Data Protection and Freedom of Information in Nordrhein-Westfalen is responsible in our case. However, if you are in another federal state or not in Germany, you can also contact the data protection authority there.
## What we do not do with your data
We do not collect any other data than what is needed to provide you the service.
We do not, in any way, process, analyze your behavior or personal characteristics to create profiles about you or your usage of the services. We have no advertisements or business relationships with advertisers.
We do not sell your data to any third party.
We do not share your data to any third party unless in case of federated services which requires certain data to be shared in order to operate (e.g. other email service provider needs to know your email address to be able to deliver emails).
We do not require any additional information that is not crucial for the operation of the service (we do not ask for phone numbers, private personal data, home address).
We do not read/look nor process your personal data, emails, files, etc., stored on our servers unless needed for providing the service, troubleshooting purposes or under suspicion of breaking our Terms Of Services in which case we ask for prior permission from you or inform you afterwards of all actions taken against the account in the transparency report addressed to account holder.
## Privacy Policy per service
### Cloud
Our cloud runs Nextcloud.
This service requires login with pub.solar credentials.
Everything (files, calendars, contacts, news, tasks, bookmarks, etc.) is stored unencrypted in a database, unless an application provides external encryption (none so far). This is a limitation of the software we are utilizing for this service (Nextcloud).
We do not currently encrypt files when you upload them because we've had some bad experiences with dataloss incurred through end-to-end encryption.
Server logs, which store information such as, but not limited to, your IP address, your username, an app currently used, error messages and User Agent, are stored for a period of 24 hours after which they are deleted from the server. No backup of log files is created. Logs are kept to prevent brute-force attacks on accounts and to provide quick insight when debugging issues.
### Git
This service requires login with pub.solar credentials.
Server logs, which store information such as, but not limited to, your IP address, your username, error messages and User Agent, are stored for a period of 24 hours after which they are deleted from the server. No backup of log files is created. Logs are kept to prevent brute-force attacks on accounts and to provide quick insight when debugging issues.
All git data such as, but not limited to, usernames, email addresses, messages, code, files, versions, pull requests, etc., are stored on the server in the database as is (plain-text).
### Matrix
This service requires login with pub.solar credentials.
Server logs, which store information such as, but not limited to, your IP address, your username, error messages and User Agent, are stored for a period of 24 hours after which they are deleted from the server. No backup of log files is created. Logs are kept to prevent brute-force attacks on accounts and to provide quick insight when debugging issues.
"Matrix" is an open, decentralized communication service for real-time communication. It enables members of pub.solar n.e.V., as well as other interested parties, to communicate with other users of this server as well as other Matrix users of federated Matrix servers via chat and audio/video telephony by means of a Matrix account.
### Mastodon
This service requires login with pub.solar credentials.
Basic account information: If you register on this server, you may be asked to enter a username, an e-mail address and a password. You may also enter additional profile information such as a display name and biography, and upload a profile picture and header image. The username, display name, biography, profile picture and header image are always listed publicly.
Posts, following and other public information: The list of people you follow is listed publicly, the same is true for your followers. When you submit a message, the date and time is stored as well as the application you submitted the message from. Messages may contain media attachments, such as pictures and videos. Public and unlisted posts are available publicly. When you feature a post on your profile, that is also publicly available information. Your posts are delivered to your followers, in some cases it means they are delivered to different servers and copies are stored there. When you delete posts, this is likewise delivered to your followers. The action of reblogging or favouriting another post is always public.
Direct and followers-only posts: All posts are stored and processed on the server. Followers-only posts are delivered to your followers and users who are mentioned in them, and direct posts are delivered only to users mentioned in them. In some cases it means they are delivered to different servers and copies are stored there. We make a good faith effort to limit the access to those posts only to authorized persons, but other servers may fail to do so. Therefore it's important to review servers your followers belong to. You may toggle an option to approve and reject new followers manually in the settings. Please keep in mind that the operators of the server and any receiving server may view such messages, and that recipients may screenshot, copy or otherwise re-share them. Do not share any sensitive information over Mastodon.
IPs and other metadata: When you log in, we record the IP address you log in from, as well as the name of your browser application. All the logged in sessions are available for your review and revocation in the settings. The latest IP address used is stored for up to 12 months. We also may retain server logs which include the IP address of every request to our server.
## References/License
We have created the basic structure of this data protection information with the help of [DS-GVO.clever-Tools](https://www.baden-wuerttemberg.datenschutz.de/ds-gvo.clever/) and adapted it to our needs. We have also used parts of [Datenschutzerklärung der TU-Dresden](https://doc.matrix.tu-dresden.de/privacy/) and adjusted them accordingly. Text is licensed [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/deed.de).

17
services.yml Normal file
View File

@ -0,0 +1,17 @@
layout: layouts/default.tsx
title: Our services
showServices: true
content: |
# Our services
This page gives an overview of the services we host. We give some information regarding the support status and privacy of each service.
* [Nextcloud](#nextcloud)
* [Mastodon](#mastodon)
* [Matrix](#matrix)
* [Forgejo / git](#forgejo)
* [Mailman](#mailman)
* [Wiki](#wiki)
* [Searx](#searx)