analytics/lib/plausible_web/templates/page/data_policy.html.eex

40 lines
1.9 KiB
Elixir
Raw Normal View History

<div class="container max-w-2xl pt-12 pb-32 leading-normal text-lg">
2019-09-02 14:29:19 +03:00
<h1 class="text-2xl font-black">Data policy</h1>
2019-09-02 14:29:19 +03:00
<div class="my-4">
2020-03-09 17:45:27 +03:00
Plausible aims to track overall trends in your website traffic, not individual visitors. With privacy in mind, we dont collect or store any data beyond what is absolutely necessary. Here is a list of what we collect and store about your website visitors.
2019-09-02 14:29:19 +03:00
</div>
<div class="my-4">
<h4 class="mb-1 font-bold">User-Agent</h4>
2019-09-02 20:52:23 +03:00
We use the <code>User-Agent</code> header to figure out what browsers and operating systems your visitors are using.
2019-09-02 14:29:19 +03:00
</div>
<div class="my-4">
<h4 class="mb-1 font-bold">Referer</h4>
2019-09-02 20:52:23 +03:00
Plausible uses the referrer string to show which other websites are driving traffic to the site youre tracking.
2019-09-02 14:29:19 +03:00
</div>
<div class="my-4">
<h4 class="mb-1 font-bold">Page URLs</h4>
2019-09-02 20:52:23 +03:00
We track the pathname of each pageview to be able to show the Top Pages report.
2019-09-02 14:29:19 +03:00
</div>
<div class="my-4">
<h4 class="mb-1 font-bold">Window inner width</h4>
2019-09-02 14:29:19 +03:00
We use <code>window.innerWidth</code> to determine the actual size of the open browser window, rather than the full width of the device. This is more accurate and makes fingerprinting harder.
</div>
2019-09-02 20:52:23 +03:00
<div class="my-4 mt-8">
<h4 class="mb-1 font-bold">We dont store IP addresses</h4>
2019-09-02 20:52:23 +03:00
We never store IP addresses in our database or logs. The IP address is used to look up the visitor country, which we store to show the Top Countries report. The IP address is discarded.
</div>
2019-09-02 14:29:19 +03:00
<div class="my-8">
<h3 class="mb-2 font-bold">Cookie policy</h3>
2019-09-09 20:10:42 +03:00
Plausible installs a first-party cookie to be able to differentiate between a new visitor and a returning visitor. This cookie contains a random identifier that is sent along with each pageview request. On the backend, this allows us to aggregate and show unique visitors and total pageviews separately.
2019-09-02 14:29:19 +03:00
</div>
<%= link("Back to homepage", to: "/", class: "text-indigo-500") %>
2019-09-02 14:29:19 +03:00
</div>