privacy.html 785 B

12345678910111213141516171819202122232425
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h2>Privacy</h2>
  4. <p>Privacy for users of this service:
  5. <ol>
  6. <li>Only participants in the measurement pool have access to your IP
  7. address (so that they can ping you, obviously)</li>
  8. <li>New participants (see below) are moderated manually</li>
  9. <li>Results have an unpredicatble URL. Of course, if you share the
  10. link to the results, anybody can see them.</li>
  11. </ol>
  12. Privacy for participants in the measurement pool:
  13. <ol>
  14. <li>Users only get access to the machine name and contact information
  15. you provided</li>
  16. <li>In particular, users don't get access to your IP address (of
  17. course, users can always use tcpdump to see where do the ping requests
  18. come from)</lI>
  19. </ol>
  20. </p>
  21. {% endblock %}