diff --git a/content/privacy.md b/content/privacy.md index 19d1bda..7b74592 100644 --- a/content/privacy.md +++ b/content/privacy.md @@ -1,32 +1,49 @@ --- -date: 2020-10-07T17:07:00+02:00 -title: privacy policy +date: 2021-05-15T11:45:00+02:00 +title: "Privacy Policy" type: singlepage --- -# Websites - -This privacy policy applies to: - - vrifox.cc - - git.vrifox.cc +This privacy policy applies to [vrifox.cc](//vrifox.cc). # What data do I store and process? - - browser type and version - - operating system - - requested url - - downloaded / accessed files - - ip address + - ip address ([anonymized](#anonymized-ips)) - time of request + - requested url + - accessed file -The data will not be given to third party and deleted after three (3) days. +This data is collected by nginx in log files. The data will not be given to any third party and deleted after three (3) days automatically. -### Cookies +## Anonymized IPs -Cookies will not be set on these websites. +Taken from [Ascraues Privacy Policy](https://ascraeus.org/page/privacy/) and modified: -I configured [nginx](https://nginx.org) to drop the header »Set-Cookie«. +``` + map $remote_addr $anon_remote_addr { + ~(?P\d+\.\d+)\. $ip.0.0; + ~(?P[^:]+:[^:]+): $ip::; + default 0.0.0.0; + } ---- + log_format privacy '$anon_remote_addr [$time_local] ' + '"$request" $status $bytes_sent '; + + access_log /var/log/nginx/access.log privacy; +``` + +## No User Agent and Referrer + +At least for now I don't need it for debugging purposes. This may change in the future. + +## No Cookies + +Cookies will not be set on these sites. I configured [nginx](https://nginx.org) to drop the header „Set-Cookie“ `proxy_hide_header Set-Cookie;`. + +## No Tracking and Analytics + +I don't track you, I don't collect data for analytics, I have no use for it. And I don't want to be tracked or analyzed either. + +# Credits This privacy policy was inspired by [Natenoms Datenschutz[-erklärung]](https://blog.natenom.com/datenschutz/).