From 36fd73706eb35d9aaf2266b24f5ef78b73d2a938 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 5 Jan 2022 11:45:34 +0100 Subject: [PATCH 1/3] add dictionary items --- .vscode/dictionaries/default.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.vscode/dictionaries/default.txt b/.vscode/dictionaries/default.txt index 8cf47f4..8813993 100644 --- a/.vscode/dictionaries/default.txt +++ b/.vscode/dictionaries/default.txt @@ -2,3 +2,4 @@ CAFS gitea gitlocal hashtable +umami -- 2.45.1 From 0883cc17f06898dde90252f55ae899bf548bade9 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 5 Jan 2022 11:45:49 +0100 Subject: [PATCH 2/3] add umami link on footer menu --- config/_default/menus.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/_default/menus.toml b/config/_default/menus.toml index 5d2f21f..3299500 100644 --- a/config/_default/menus.toml +++ b/config/_default/menus.toml @@ -44,3 +44,8 @@ name = "Datenschutz" pageRef = "datenschutz" weight = 20 + +[[footer]] + name = "Stats" + url = "https://umami.ocram85.com/share/KAk7LmbU/Blog" + weight = 30 -- 2.45.1 From bf2f28939d5c84347e820befd4d17e0e35fd99be Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 5 Jan 2022 11:46:08 +0100 Subject: [PATCH 3/3] add privacy post --- content/datenschutz.md | 8 +-- content/posts/privacy-updates/index.md | 80 ++++++++++++++++++++++++++ 2 files changed, 84 insertions(+), 4 deletions(-) create mode 100644 content/posts/privacy-updates/index.md diff --git a/content/datenschutz.md b/content/datenschutz.md index 64a0cb6..ae8bfd6 100644 --- a/content/datenschutz.md +++ b/content/datenschutz.md @@ -16,10 +16,10 @@ showPagination: false > > [Erstellt mit Datenschutz-Generator.de von RA Dr. Thomas Schwenke](https://datenschutz-generator.de) -{: .box-note} - **Anmerkung:** -Änderungen in unserer Datenschutzerklärung finden Sie in Abschnitt [Änderungen](#Änderungen). -Weitere Artikel zum Thema Datenschutz werden in der Kategorie [Privacy](tags#Privacy) veröffentlicht. +{{< note >}} +Änderungen in unserer Datenschutzerklärung finden Sie in Abschnitt [Änderungen](#änderungen). +Weitere Artikel zum Thema Datenschutz werden in der Kategorie [Privacy](/tags/privacy/) veröffentlicht. +{{< /note >}} Diese Datenschutzerklärung klärt Sie über die Art, den Umfang und Zweck der Verarbeitung von personenbezogenen Daten (nachfolgend kurz „Daten“) innerhalb unseres Onlineangebotes und der mit ihm verbundenen Webseiten, Funktionen und diff --git a/content/posts/privacy-updates/index.md b/content/posts/privacy-updates/index.md new file mode 100644 index 0000000..2561601 --- /dev/null +++ b/content/posts/privacy-updates/index.md @@ -0,0 +1,80 @@ +--- +title: 'Privacy Updates' +date: 2022-01-05T11:17:19+01:00 +draft: false +tags: ['privacy'] +# lastmod: 2022-01-05T11:17:19+01:00 +# showDateUpdated: true + +# custom overrides for pages +# showDate: false +# showAuthor: false +# showWordCount: false +# showReadingTime: false +# showEdit: false +# sharingLinks: [null] +--- + +## General + +This blog is based on jpanther`s hugo theme [congo](https://github.com/jpanther/congo). Due to the requirements +of the GDPR, I reworked some parts to ensure to be compliant. Because I'm not a native English speaker or lawyer, +I'm not able to provide you a fully detailed privacy policy in English, which would justice you or the German +legislation. + +But to be as transparent as possible I'll try my best to explain and what kind of data will be collected. + +## Shared Data Overview + +### Public IP + +{{< note >}} +Please don't ask why we are sharing your IP with these +providers: Technically you need an address to transfer any data through the internet ! +{{< /note >}} + +The following table shows who could get access to your public IP while browsing on this blog. + +| Data | Accessible By | Collected By | Used For | Retention Time | +| :--: | :-----------: | :----------: | :------------: | :------------: | +| IP | Me | Webserver | Security | 7 days | +| IP | Me | Umami | Web Statistics | 7 days | + +Removed data providers / features: + +- Disqus +- cloudflare + +### Cookies + +While moving the the current theme, I could remove all previously used cookies: + +- Disqus +- cloudflare +- Cookie-Consent + +## Design Changes + +- I've added a detailed page called [Datenschutz](/datenschutz) which contains all needed sections requested by the + GDPR. + +## Hosting Changes + +Another big step was moving away from the github provided hosting service called github-pages and its CI/CD tools. +I'm absolutely happy with this service, but I was forced to host this blog by myself to ensure I +know what happens with your data. This enables me to tell you which data will be collected by the webserver while +you browse on this page. + +To secure my systems I need to collect your IP and store them into the webserver's access and error logs. +The logs will be deleted after 7 days. + +## Used Tools Overview + +### Web Statistics (Umami) + +This site uses a self hosted instance of Umami to monitor the visits and traffic on this blog. +Umami collects data without using a cookie. Your data is used to generate anonymized statistics. Detailed +information about this can be found on the [Umami page](https://umami.is/docs/faq) itself. + +You can also visit the the [umami web statistics](https://umami.ocram85.com/share/KAk7LmbU/Blog) page to +see all the collected data. -- 2.45.1