From 4f80678a41c8c82457213ddb6a7dedb45a8a13ff Mon Sep 17 00:00:00 2001 From: Brooke Date: Tue, 16 Apr 2024 22:30:29 -0400 Subject: [PATCH] log policy page --- content/logs/index.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 content/logs/index.md diff --git a/content/logs/index.md b/content/logs/index.md new file mode 100644 index 0000000..f7b8f1c --- /dev/null +++ b/content/logs/index.md @@ -0,0 +1,35 @@ +--- +title: "Logging Policies" + +cascade: + showDate: false + showAuthor: false + invertPagination: true + showLikes: false + showViews: false +--- + +## No Cookies, NGINX Logs + +We do not use cookies on any of our websites. Instead, we primarily use NGINX logs. Here's an example of what a user looks like to us: + +``` +[16/Apr/2024:18:50:17 -0700] "https://web.myco.systems/" 200 5929 "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/123.0" - +``` + +### Log breakdown: + +- **Date:** 16th April, 2024, 6:50:17 PM (GMT-7 timezone) +- **URL:** https://web.myco.systems/ +- **Response Code:** 200 (success) +- **Response Size:** 5929 bytes +- **User Agent:** Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/123.0 +- **Negative Information:** None + +### We explicitly do not collect the following information: + +- IP addresses +- Page time +- Site Referrers + +We do not sell data to 3rd parties, our log retention policy is to wipe logs older than 180 days. \ No newline at end of file