default.yaml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  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. subject:
  60. prefix: "[PeerTube]"
  61. # From the project root directory
  62. storage:
  63. tmp: 'storage/tmp/' # Use 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
  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: '12 hours' # 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. # Generate videos in a WebTorrent format (what we do since the first PeerTube release)
  189. # If you also enabled the hls format, it will multiply videos storage by 2
  190. webtorrent:
  191. enabled: true
  192. # /!\ Requires ffmpeg >= 4.1
  193. # Generate HLS playlists and fragmented MP4 files. Better playback than with WebTorrent:
  194. # * Resolution change is smoother
  195. # * Faster playback in particular with long videos
  196. # * More stable playback (less bugs/infinite loading)
  197. # If you also enabled the webtorrent format, it will multiply videos storage by 2
  198. hls:
  199. enabled: false
  200. import:
  201. # Add ability for your users to import remote videos (from YouTube, torrent...)
  202. videos:
  203. http: # Classic HTTP or all sites supported by youtube-dl https://rg3.github.io/youtube-dl/supportedsites.html
  204. enabled: false
  205. torrent: # Magnet URI or torrent file (use classic TCP/UDP/WebSeed to download the file)
  206. enabled: false
  207. auto_blacklist:
  208. # New videos automatically blacklisted so moderators can review before publishing
  209. videos:
  210. of_users:
  211. enabled: false
  212. instance:
  213. name: 'PeerTube'
  214. short_description: 'PeerTube, a federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.'
  215. description: 'Welcome to this PeerTube instance!' # Support markdown
  216. terms: 'No terms for now.' # Support markdown
  217. code_of_conduct: '' # Supports markdown
  218. # Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc
  219. moderation_information: '' # Supports markdown
  220. # Why did you create this instance?
  221. creation_reason: ''
  222. # Who is behind the instance? A single person? A non profit?
  223. administrator: ''
  224. # How long do you plan to maintain this instance?
  225. maintenance_lifetime: ''
  226. # How will you pay the PeerTube instance server? With you own funds? With users donations? Advertising?
  227. business_model: ''
  228. # If you want to explain on what type of hardware your PeerTube instance runs
  229. # Example: "2 vCore, 2GB RAM..."
  230. hardware_information: '' # Supports Markdown
  231. # What are the main languages of your instance? To interact with your users for example
  232. # Uncomment or add the languages you want
  233. # List of supported languages: https://peertube.cpy.re/api/v1/videos/languages
  234. languages:
  235. # - en
  236. # - es
  237. # - fr
  238. # You can specify the main categories of your instance (dedicated to music, gaming or politics etc)
  239. # Uncomment or add the category ids you want
  240. # List of supported categories: https://peertube.cpy.re/api/v1/videos/categories
  241. categories:
  242. # - 1 # Music
  243. # - 2 # Films
  244. # - 3 # Vehicles
  245. # - 4 # Art
  246. # - 5 # Sports
  247. # - 6 # Travels
  248. # - 7 # Gaming
  249. # - 8 # People
  250. # - 9 # Comedy
  251. # - 10 # Entertainment
  252. # - 11 # News & Politics
  253. # - 12 # How To
  254. # - 13 # Education
  255. # - 14 # Activism
  256. # - 15 # Science & Technology
  257. # - 16 # Animals
  258. # - 17 # Kids
  259. # - 18 # Food
  260. default_client_route: '/videos/trending'
  261. # Whether or not the instance is dedicated to NSFW content
  262. # Enabling it will allow other administrators to know that you are mainly federating sensitive content
  263. # Moreover, the NSFW checkbox on video upload will be automatically checked by default
  264. is_nsfw: false
  265. # By default, "do_not_list" or "blur" or "display" NSFW videos
  266. # Could be overridden per user with a setting
  267. default_nsfw_policy: 'do_not_list'
  268. customizations:
  269. javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
  270. css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime
  271. # Robot.txt rules. To disallow robots to crawl your instance and disallow indexation of your site, add '/' to "Disallow:'
  272. robots: |
  273. User-agent: *
  274. Disallow:
  275. # Security.txt rules. To discourage researchers from testing your instance and disable security.txt integration, set this to an empty string.
  276. securitytxt:
  277. "# 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:"
  278. services:
  279. # Cards configuration to format video in Twitter
  280. twitter:
  281. username: '@Chocobozzz' # Indicates the Twitter account for the website or platform on which the content was published
  282. # If true, a video player will be embedded in the Twitter feed on PeerTube video share
  283. # If false, we use an image link card that will redirect on your PeerTube instance
  284. # Change it to "true", and then test on https://cards-dev.twitter.com/validator to see if you are whitelisted
  285. whitelisted: false
  286. followers:
  287. instance:
  288. # Allow or not other instances to follow yours
  289. enabled: true
  290. # Whether or not an administrator must manually validate a new follower
  291. manual_approval: false
  292. followings:
  293. instance:
  294. # If you want to automatically follow back new instance followers
  295. # Only follows accepted followers (in case you enabled manual followers approbation)
  296. # If this option is enabled, use the mute feature instead of deleting followings
  297. # /!\ Don't enable this if you don't have a reactive moderation team /!\
  298. auto_follow_back:
  299. enabled: false
  300. # If you want to automatically follow instances of the public index
  301. # If this option is enabled, use the mute feature instead of deleting followings
  302. # /!\ Don't enable this if you don't have a reactive moderation team /!\
  303. auto_follow_index:
  304. enabled: false
  305. index_url: 'https://instances.joinpeertube.org'
  306. theme:
  307. default: 'default'