]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/about/about.component.html
bcb4ed2becfb90652744a11d3596f91d06c02f43
[github/Chocobozzz/PeerTube.git] / client / src / app / about / about.component.html
1 <div class="margin-content">
2 <div class="title-page title-page-single">
3 Welcome to the {{ instanceName }} instance
4 </div>
5
6 <div class="description">
7 <div class="section-title">Description</div>
8
9 <div [innerHTML]="descriptionHTML"></div>
10 </div>
11
12 <div class="terms">
13 <div class="section-title">Terms</div>
14
15 <div [innerHTML]="termsHTML"></div>
16
17 <div *ngIf="userVideoQuota !== -1;else noQuota">
18 This instance provides a baseline quota of {{ userVideoQuota | bytes: 0 }} space for the videos of its users.
19 </div>
20
21 <ng-template #noQuota>
22 This instance provides unlimited space for the videos of its users.
23 </ng-template>
24 </div>
25
26 <div id="p2p-privacy">
27 <div class="section-title">P2P & Privacy</div>
28
29 <p>
30 PeerTube uses the BitTorrent protocol to share bandwidth between users. It implies that your public IP address is stored in the public BitTorrent tracker of the video PeerTube instance as long as you're watching the video.
31 If you want to keep your public IP address private, please use a VPN or Tor.
32 </p>
33 </div>
34 </div>