Updated and refined the privacy policy
This commit is contained in:
parent
68ba1a6893
commit
bd1e2bae3a
1 changed files with 34 additions and 17 deletions
|
@ -1,32 +1,49 @@
|
||||||
---
|
---
|
||||||
date: 2020-10-07T17:07:00+02:00
|
date: 2021-05-15T11:45:00+02:00
|
||||||
title: privacy policy
|
title: "Privacy Policy"
|
||||||
type: singlepage
|
type: singlepage
|
||||||
---
|
---
|
||||||
|
|
||||||
# Websites
|
This privacy policy applies to [vrifox.cc](//vrifox.cc).
|
||||||
|
|
||||||
This privacy policy applies to:
|
|
||||||
- vrifox.cc
|
|
||||||
- git.vrifox.cc
|
|
||||||
|
|
||||||
# What data do I store and process?
|
# What data do I store and process?
|
||||||
|
|
||||||
- browser type and version
|
- ip address ([anonymized](#anonymized-ips))
|
||||||
- operating system
|
|
||||||
- requested url
|
|
||||||
- downloaded / accessed files
|
|
||||||
- ip address
|
|
||||||
- time of request
|
- 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<ip>\d+\.\d+)\. $ip.0.0;
|
||||||
|
~(?P<ip>[^:]+:[^:]+): $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/).
|
This privacy policy was inspired by [Natenoms Datenschutz[-erklärung]](https://blog.natenom.com/datenschutz/).
|
||||||
|
|
Loading…
Reference in a new issue