X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=config%2Fproduction.yaml.example;h=68d29d26faf85a301588aacb5580d12c379d7d60;hb=8ba9c205ba239fed18741bed36ad2fb2032cd5b2;hp=96d676a35c65f7778bf3594d3d89e9052bb23812;hpb=be04c6fdab5d91a7a57fa3ff36cde22a549c29da;p=github%2FChocobozzz%2FPeerTube.git diff --git a/config/production.yaml.example b/config/production.yaml.example index 96d676a35..68d29d26f 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example @@ -87,6 +87,9 @@ log: level: 'info' # debug/info/warning/error rotation: enabled : true # Enabled by default, if disabled make sure that 'storage.logs' is pointing to a folder handled by logrotate + maxFileSize: 12MB + maxFiles: 20 + anonymizeIP: false search: # Add ability to fetch remote videos/actors by their URI, that may not be federated with your instance @@ -217,19 +220,26 @@ transcoding: allow_audio_files: true threads: 1 resolutions: # Only created if the original video has a higher resolution, uses more storage! + 0p: false # audio-only (creates mp4 without video stream, always created when enabled) 240p: false 360p: false 480p: false 720p: false 1080p: false 2160p: false - # /!\ EXPERIMENTAL /!\ - # /!\ Requires ffmpeg >= 4 + + # Generate videos in a WebTorrent format (what we do since the first PeerTube release) + # If you also enabled the hls format, it will multiply videos storage by 2 + # If disabled, breaks federation with PeerTube instances < 2.1 + webtorrent: + enabled: true + + # /!\ Requires ffmpeg >= 4.1 # Generate HLS playlists and fragmented MP4 files. Better playback than with WebTorrent: # * Resolution change is smoother # * Faster playback in particular with long videos # * More stable playback (less bugs/infinite loading) - # /!\ Multiplies videos storage by 2 /!\ + # If you also enabled the webtorrent format, it will multiply videos storage by 2 hls: enabled: false