diff options
Diffstat (limited to 'FAQ.md')
-rw-r--r-- | FAQ.md | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -18,6 +18,7 @@ | |||
18 | - [Are you going to use the Steem blockchain?](#are-you-going-to-use-the-steem-blockchain) | 18 | - [Are you going to use the Steem blockchain?](#are-you-going-to-use-the-steem-blockchain) |
19 | - [Are you going to support advertisements?](#are-you-going-to-support-advertisements) | 19 | - [Are you going to support advertisements?](#are-you-going-to-support-advertisements) |
20 | - [What is "creation dynamic" and why not modify it?](#what-is-creation-dynamic-and-why-not-modify-it) | 20 | - [What is "creation dynamic" and why not modify it?](#what-is-creation-dynamic-and-why-not-modify-it) |
21 | - [I have found a security vulnerability in PeerTube. Where and how should I report it?](#i-have-found-a-security-vulnerability-in-peertube-where-and-how-should-i-report-it) | ||
21 | 22 | ||
22 | <!-- END doctoc generated TOC please keep comment here to allow auto update --> | 23 | <!-- END doctoc generated TOC please keep comment here to allow auto update --> |
23 | 24 | ||
@@ -32,6 +33,7 @@ is named "Framatube". | |||
32 | 33 | ||
33 | Yes, the origin server always seeds videos uploaded on it thanks to | 34 | Yes, the origin server always seeds videos uploaded on it thanks to |
34 | [Webseed](http://www.bittorrent.org/beps/bep_0019.html). | 35 | [Webseed](http://www.bittorrent.org/beps/bep_0019.html). |
36 | It can also be helped by other servers using [redundancy](/support/doc/redundancy.md). | ||
35 | 37 | ||
36 | 38 | ||
37 | ## What is WebSeed? | 39 | ## What is WebSeed? |
@@ -71,7 +73,7 @@ Not really. For instance, the demonstration server [https://peertube.cpy.re](htt | |||
71 | * **RAM** -> nginx ~ 6MB, peertube ~ 120MB, postgres ~ 10MB, redis ~ 5MB | 73 | * **RAM** -> nginx ~ 6MB, peertube ~ 120MB, postgres ~ 10MB, redis ~ 5MB |
72 | 74 | ||
73 | So you would need: | 75 | So you would need: |
74 | * **CPU** 1 core if you don't enable transcoding, 2 at least if you enable it | 76 | * **CPU** 1 core if you don't enable transcoding, 2 at least if you enable it (works with 1 but this is really slow) |
75 | * **RAM** 1GB | 77 | * **RAM** 1GB |
76 | * **Storage** Completely depends on how many videos your users will upload | 78 | * **Storage** Completely depends on how many videos your users will upload |
77 | 79 | ||
@@ -80,7 +82,7 @@ So you would need: | |||
80 | 82 | ||
81 | Yes you can, but you won't be able to send data to users that watch the video in their web browser. | 83 | Yes you can, but you won't be able to send data to users that watch the video in their web browser. |
82 | The reason is they connects to peers through WebRTC whereas your BitTorrent client uses classic TCP/UDP. | 84 | The reason is they connects to peers through WebRTC whereas your BitTorrent client uses classic TCP/UDP. |
83 | We hope to see compatibility with WebRTC in popular BitTorrent client in the future. See this issue for more information: https://github.com/webtorrent/webtorrent/issues/369 | 85 | To check if your BitTorrent client supports WebTorrent you can see this issue: https://github.com/webtorrent/webtorrent/issues/369 |
84 | 86 | ||
85 | 87 | ||
86 | ## Why host on GitHub and Framagit? | 88 | ## Why host on GitHub and Framagit? |
@@ -119,3 +121,7 @@ If you still want to use a functionality potentially altering that state of thin | |||
119 | 121 | ||
120 | With that being said, know that we are not against these features *per se*. | 122 | With that being said, know that we are not against these features *per se*. |
121 | We are always open to discussion about potential PRs bringing in features, even of that kind. But we certainly won't dedicate our limited resources to develop them ourselves when there is so much to be done elsewhere. | 123 | We are always open to discussion about potential PRs bringing in features, even of that kind. But we certainly won't dedicate our limited resources to develop them ourselves when there is so much to be done elsewhere. |
124 | |||
125 | ## I have found a security vulnerability in PeerTube. Where and how should I report it? | ||
126 | |||
127 | We have a policy for contributions related to security. Please refer to [SECURITY.md](./SECURITY.md) | ||