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