]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+about/about-peertube/about-peertube.component.html
Move alert into to pt-alert-primary
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about-peertube / about-peertube.component.html
CommitLineData
d8232bac
C
1<div class="root">
2 <h1 i18n class="about-peertube-title">
8db19c95 3 This website is powered by PeerTube
d8232bac 4 </h1>
78f912ed 5
81fe3c67 6 <img class="mascot" width="121px" height="147px" src="/client/assets/images/mascot/default.svg" alt="mascot"/>
1eb23e12 7
d8232bac 8 <div class="description">
1eb23e12 9 <p i18n>
81fe3c67 10 PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser.
1eb23e12
C
11 </p>
12
1eb23e12 13 <p i18n>
dc5bb5ce 14 It is free and open-source software, under <a href="https://github.com/Chocobozzz/PeerTube/blob/develop/LICENSE">AGPLv3
d8232bac 15 licence</a>.
1eb23e12
C
16 </p>
17
1eb23e12 18 <p i18n>
d8232bac 19 For more information, please visit <a target="_blank" rel="noopener noreferrer" href="https://joinpeertube.org">joinpeertube.org</a>.
1eb23e12 20 </p>
d8232bac 21 </div>
1eb23e12 22
d8232bac
C
23 <div class="documentation">
24
25 <div class="card">
26 <div class="card-body">
c9e3565d 27 <div class="card-title">
9817060f 28 <a i18n target="_blank" rel="noopener noreferrer" href="https://docs.joinpeertube.org/use-setup-account">Use PeerTube
d8232bac 29 documentation</a>
c9e3565d 30 </div>
d8232bac
C
31
32 <div i18n class="card-text">
33 Discover how to setup your account, what is a channel, how to create a playlist and more!
34 </div>
35 </div>
36 </div>
37
38 <div class="card">
39 <div class="card-body">
c9e3565d 40 <div class="card-title">
9817060f 41 <a i18n target="_blank" rel="noopener noreferrer" href="https://docs.joinpeertube.org/use-third-party-application">PeerTube
d8232bac 42 Applications</a>
c9e3565d 43 </div>
d8232bac
C
44
45 <div i18n class="card-text">
46 Discover unofficial Android applications or browser addons!
47 </div>
48 </div>
49 </div>
50
51 <div class="card">
52 <div class="card-body">
c9e3565d 53 <div class="card-title">
9817060f 54 <a i18n target="_blank" rel="noopener noreferrer" href="https://docs.joinpeertube.org/contribute-getting-started">Contribute on
d8232bac 55 PeerTube</a>
c9e3565d 56 </div>
d8232bac
C
57
58 <div i18n class="card-text">
59 Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code!
60 </div>
61 </div>
62 </div>
63 </div>
1eb23e12 64
d8232bac 65 <div class="privacy-contributors">
51de2c7f 66 <div class="p2p-privacy">
c9e3565d 67 <h2 class="section-title">
5411da31
RK
68 <div class="anchor" id="privacy"></div> <!-- privacy anchor -->
69 <ng-container i18n>P2P & Privacy</ng-container>
c9e3565d 70 </h2>
d8232bac
C
71
72 <p i18n>
a6f01388
RK
73 PeerTube uses the BitTorrent protocol to share bandwidth between users by default to help lower the load on the server,
74 but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What
75 follows applies only if you want to keep using the P2P mode of PeerTube.
76 </p>
77
5188db66 78 <p i18n>
51de2c7f 79 The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent
a6f01388 80 tracker as long as you download or watch the video.
d8232bac
C
81 </p>
82
c9e3565d 83 <h3 i18n class="p2p-privacy-title">What are the consequences?</h3>
d8232bac
C
84
85 <p i18n>
86 In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video.
87 In practice, this is much more difficult because:
88 </p>
89
90 <ul>
91 <li i18n>
92 An HTTP request has to be sent on each tracker for each video to spy.
93 If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot)
94 </li>
95
96 <li i18n>
97 For each request sent, the tracker returns random peers at a limited number.
98 For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50
5411da31 99 requests sent to know every peer in the swarm
d8232bac
C
100 </li>
101
102 <li i18n>
103 Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour
104 </li>
105
106 <li i18n>
107 If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the
108 video
109 </li>
110
111 <li i18n>
112 The IP address is a vague information: usually, it regularly changes and can represent many persons or entities
113 </li>
114
115 <li i18n>
51de2c7f 116 Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker.
d8232bac
C
117 When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers
118 to forward the information to.
119 See <a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">this document</a> for more information
120 </li>
121 </ul>
122
123 <p i18n>
124 The worst-case scenario of an average person spying on their friends is quite unlikely.
125 There are much more effective ways to get that kind of information.
126 </p>
127
c9e3565d 128 <h3 i18n class="p2p-privacy-title">How does PeerTube compare with YouTube?</h3>
d8232bac
C
129
130 <p i18n>
a6f01388 131 The threats to privacy with YouTube are different from PeerTube's.
d8232bac
C
132 In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you.
133 Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics).
134 </p>
135
c9e3565d 136 <h3 i18n class="p2p-privacy-title">What can I do to limit the exposure of my IP address?</h3>
d8232bac
C
137
138 <p i18n>
139 Your IP address is public so every time you consult a website, there is a number of actors (in addition to the final website) seeing
140 your IP in their connection logs: ISP/routers/trackers/CDN and more.
141 PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser.
142 Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense.
143 </p>
144
c9e3565d 145 <h3 i18n class="p2p-privacy-title">What will be done to mitigate this problem?</h3>
d8232bac
C
146
147 <p i18n>
a6f01388
RK
148 PeerTube wants to deliver the best countermeasures possible, to give you more choice
149 and render attacks less likely. Here is what we put in place so far:
d8232bac
C
150 </p>
151
152 <ul>
a6f01388
RK
153 <li i18n>We set a limit to the number of peers sent by the tracker</li>
154 <li i18n>We set a limit on the request frequency received by the tracker</li>
155 <li i18n>Allow instance admins to disable P2P from the administration interface</li>
d8232bac 156 </ul>
a6f01388
RK
157
158 <p i18n>
159 Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling
160 WebRTC in your browser.
161 </p>
d8232bac 162 </div>
1eb23e12 163
1eb23e12 164 </div>
f65bcbb5 165</div>