12345678910111213141516171819202122232425 |
- {% extends "base.html" %}
- {% block content %}
- <h2>Privacy</h2>
- <p>Privacy for users of this service:
- <ol>
- <li>Only participants in the measurement pool have access to your IP
- address (so that they can ping you, obviously)</li>
- <li>New participants (see below) are moderated manually</li>
- <li>Results have an unpredicatble URL. Of course, if you share the
- link to the results, anybody can see them.</li>
- </ol>
- Privacy for participants in the measurement pool:
- <ol>
- <li>Users only get access to the machine name and contact information
- you provided</li>
- <li>In particular, users don't get access to your IP address (of
- course, users can always use tcpdump to see where do the ping requests
- come from)</lI>
- </ol>
- </p>
- {% endblock %}
|