default.yaml 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. # /!\ YOU SHOULD NOT UPDATE THIS FILE, USE production.yaml instead /!\ #
  2. listen:
  3. hostname: '127.0.0.1'
  4. port: 9000
  5. webserver:
  6. https: false
  7. hostname: 'localhost'
  8. port: 9000
  9. rates_limit:
  10. api:
  11. # 50 attempts in 10 seconds
  12. window: 10 seconds
  13. max: 50
  14. login:
  15. # 15 attempts in 5 min
  16. window: 5 minutes
  17. max: 15
  18. signup:
  19. # 2 attempts in 5 min (only succeeded attempts are taken into account)
  20. window: 5 minutes
  21. max: 2
  22. ask_send_email:
  23. # 3 attempts in 5 min
  24. window: 5 minutes
  25. max: 3
  26. # Proxies to trust to get real client IP
  27. # If you run PeerTube just behind a local proxy (nginx), keep 'loopback'
  28. # If you run PeerTube behind a remote proxy, add the proxy IP address (or subnet)
  29. trust_proxy:
  30. - 'loopback'
  31. # Your database name will be "peertube"+database.suffix
  32. database:
  33. hostname: 'localhost'
  34. port: 5432
  35. suffix: '_dev'
  36. username: 'peertube'
  37. password: 'peertube'
  38. pool:
  39. max: 5
  40. # You can also specify a 'socket' path to a unix socket but first need to
  41. # comment out hostname and port
  42. redis:
  43. hostname: 'localhost'
  44. port: 6379
  45. auth: null
  46. db: 0
  47. smtp:
  48. hostname: null
  49. port: 465
  50. username: null
  51. password: null
  52. tls: true
  53. disable_starttls: false
  54. ca_file: null # Used for self signed certificates
  55. from_address: 'admin@example.com'
  56. email:
  57. body:
  58. signature: "PeerTube"
  59. object:
  60. prefix: "[PeerTube]"
  61. # From the project root directory
  62. storage:
  63. tmp: 'storage/tmp/' # Used to download data (imports etc), store uploaded files before processing...
  64. avatars: 'storage/avatars/'
  65. videos: 'storage/videos/'
  66. streaming_playlists: 'storage/streaming-playlists/'
  67. redundancy: 'storage/redundancy/'
  68. logs: 'storage/logs/'
  69. previews: 'storage/previews/'
  70. thumbnails: 'storage/thumbnails/'
  71. torrents: 'storage/torrents/'
  72. captions: 'storage/captions/'
  73. cache: 'storage/cache/'
  74. plugins: 'storage/plugins/'
  75. log:
  76. level: 'info' # debug/info/warning/error
  77. rotation:
  78. enabled : true # Enabled by default, if disabled make sure that 'storage.logs' is pointing to a folder handled by logrotate
  79. search:
  80. # Add ability to fetch remote videos/actors by their URI, that may not be federated with your instance
  81. # If enabled, the associated group will be able to "escape" from the instance follows
  82. # That means they will be able to follow channels, watch videos, list videos of non followed instances
  83. remote_uri:
  84. users: true
  85. anonymous: false
  86. trending:
  87. videos:
  88. interval_days: 7 # Compute trending videos for the last x days
  89. # Cache remote videos on your server, to help other instances to broadcast the video
  90. # You can define multiple caches using different sizes/strategies
  91. # Once you have defined your strategies, choose which instances you want to cache in admin -> manage follows -> following
  92. redundancy:
  93. videos:
  94. check_interval: '1 hour' # How often you want to check new videos to cache
  95. strategies: # Just uncomment strategies you want
  96. # -
  97. # size: '10GB'
  98. # # Minimum time the video must remain in the cache. Only accept values > 10 hours (to not overload remote instances)
  99. # min_lifetime: '48 hours'
  100. # strategy: 'most-views' # Cache videos that have the most views
  101. # -
  102. # size: '10GB'
  103. # # Minimum time the video must remain in the cache. Only accept values > 10 hours (to not overload remote instances)
  104. # min_lifetime: '48 hours'
  105. # strategy: 'trending' # Cache trending videos
  106. # -
  107. # size: '10GB'
  108. # # Minimum time the video must remain in the cache. Only accept values > 10 hours (to not overload remote instances)
  109. # min_lifetime: '48 hours'
  110. # strategy: 'recently-added' # Cache recently added videos
  111. # min_views: 10 # Having at least x views
  112. csp:
  113. enabled: false
  114. report_only: true # CSP directives are still being tested, so disable the report only mode at your own risk!
  115. report_uri:
  116. tracker:
  117. # If you disable the tracker, you disable the P2P aspect of PeerTube
  118. enabled: true
  119. # Only handle requests on your videos.
  120. # If you set this to false it means you have a public tracker.
  121. # Then, it is possible that clients overload your instance with external torrents
  122. private: true
  123. # Reject peers that do a lot of announces (could improve privacy of TCP/UDP peers)
  124. reject_too_many_announces: false
  125. history:
  126. videos:
  127. # If you want to limit users videos history
  128. # -1 means there is no limitations
  129. # Other values could be '6 months' or '30 days' etc (PeerTube will periodically delete old entries from database)
  130. max_age: -1
  131. views:
  132. videos:
  133. # PeerTube creates a database entry every hour for each video to track views over a period of time
  134. # This is used in particular by the Trending page
  135. # PeerTube could remove old remote video views if you want to reduce your database size (video view counter will not be altered)
  136. # -1 means no cleanup
  137. # Other values could be '6 months' or '30 days' etc (PeerTube will periodically delete old entries from database)
  138. remote:
  139. max_age: -1
  140. plugins:
  141. # The website PeerTube will ask for available PeerTube plugins and themes
  142. # This is an unmoderated plugin index, so only install plugins/themes you trust
  143. index:
  144. enabled: true
  145. check_latest_versions_interval: '1 day' # How often you want to check new plugins/themes versions
  146. url: 'https://packages.joinpeertube.org'
  147. cache:
  148. previews:
  149. size: 500 # Max number of previews you want to cache
  150. captions:
  151. size: 500 # Max number of video captions/subtitles you want to cache
  152. admin:
  153. # Used to generate the root user at first startup
  154. # And to receive emails from the contact form
  155. email: 'admin@example.com'
  156. contact_form:
  157. enabled: true
  158. signup:
  159. enabled: false
  160. limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
  161. requires_email_verification: false
  162. filters:
  163. cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist
  164. whitelist: []
  165. blacklist: []
  166. user:
  167. # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).
  168. # -1 == unlimited
  169. video_quota: -1
  170. video_quota_daily: -1
  171. # If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
  172. # In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions.
  173. # Please, do not disable transcoding since many uploaded videos will not work
  174. transcoding:
  175. enabled: true
  176. # Allow your users to upload .mkv, .mov, .avi, .flv videos
  177. allow_additional_extensions: true
  178. # If a user uploads an audio file, PeerTube will create a video by merging the preview file and the audio file
  179. allow_audio_files: true
  180. threads: 1
  181. resolutions: # Only created if the original video has a higher resolution, uses more storage!
  182. 240p: false
  183. 360p: false
  184. 480p: false
  185. 720p: false
  186. 1080p: false
  187. 2160p: false
  188. # /!\ EXPERIMENTAL /!\
  189. # /!\ Requires ffmpeg >= 4
  190. # Generate HLS playlists and fragmented MP4 files. Better playback than with WebTorrent:
  191. # * Resolution change is smoother
  192. # * Faster playback in particular with long videos
  193. # * More stable playback (less bugs/infinite loading)
  194. # /!\ Multiplies videos storage by 2 /!\
  195. hls:
  196. enabled: false
  197. import:
  198. # Add ability for your users to import remote videos (from YouTube, torrent...)
  199. videos:
  200. http: # Classic HTTP or all sites supported by youtube-dl https://rg3.github.io/youtube-dl/supportedsites.html
  201. enabled: false
  202. torrent: # Magnet URI or torrent file (use classic TCP/UDP/WebSeed to download the file)
  203. enabled: false
  204. auto_blacklist:
  205. # New videos automatically blacklisted so moderators can review before publishing
  206. videos:
  207. of_users:
  208. enabled: false
  209. instance:
  210. name: 'PeerTube'
  211. short_description: 'PeerTube, a federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.'
  212. description: 'Welcome to this PeerTube instance!' # Support markdown
  213. terms: 'No terms for now.' # Support markdown
  214. default_client_route: '/videos/trending'
  215. # Whether or not the instance is dedicated to NSFW content
  216. # Enabling it will allow other administrators to know that you are mainly federating sensitive content
  217. # Moreover, the NSFW checkbox on video upload will be automatically checked by default
  218. is_nsfw: false
  219. # By default, "do_not_list" or "blur" or "display" NSFW videos
  220. # Could be overridden per user with a setting
  221. default_nsfw_policy: 'do_not_list'
  222. customizations:
  223. javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
  224. css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime
  225. # Robot.txt rules. To disallow robots to crawl your instance and disallow indexation of your site, add '/' to "Disallow:'
  226. robots: |
  227. User-agent: *
  228. Disallow:
  229. # Security.txt rules. To discourage researchers from testing your instance and disable security.txt integration, set this to an empty string.
  230. securitytxt:
  231. "# If you would like to report a security issue\n# you may report it to:\nContact: https://github.com/Chocobozzz/PeerTube/blob/develop/SECURITY.md\nContact: mailto:"
  232. services:
  233. # Cards configuration to format video in Twitter
  234. twitter:
  235. username: '@Chocobozzz' # Indicates the Twitter account for the website or platform on which the content was published
  236. # If true, a video player will be embedded in the Twitter feed on PeerTube video share
  237. # If false, we use an image link card that will redirect on your PeerTube instance
  238. # Change it to "true", and then test on https://cards-dev.twitter.com/validator to see if you are whitelisted
  239. whitelisted: false
  240. followers:
  241. instance:
  242. # Allow or not other instances to follow yours
  243. enabled: true
  244. # Whether or not an administrator must manually validate a new follower
  245. manual_approval: false
  246. theme:
  247. default: 'default'