]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - config/production.yaml.example
Fix broken player on non MSE devices
[github/Chocobozzz/PeerTube.git] / config / production.yaml.example
CommitLineData
552cc9d6 1listen:
a4152bed 2 hostname: '127.0.0.1'
552cc9d6
C
3 port: 9000
4
d8658f0f 5# Correspond to your reverse proxy server_name/listen configuration (i.e., your public PeerTube instance URL)
f1f4732f 6webserver:
d478d83d 7 https: true
3737bbaf 8 hostname: 'example.com'
d478d83d 9 port: 443
825a5d9c 10
c342726a 11rates_limit:
c1340a6a
C
12 api:
13 # 50 attempts in 10 seconds
14 window: 10 seconds
15 max: 50
c342726a
YB
16 login:
17 # 15 attempts in 5 min
18 window: 5 minutes
19 max: 15
c1340a6a
C
20 signup:
21 # 2 attempts in 5 min (only succeeded attempts are taken into account)
22 window: 5 minutes
23 max: 2
c342726a
YB
24 ask_send_email:
25 # 3 attempts in 5 min
26 window: 5 minutes
27 max: 3
42b40636
C
28 receive_client_log:
29 # 10 attempts in 10 min
30 window: 10 minutes
31 max: 10
c342726a 32
490b595a
C
33# Proxies to trust to get real client IP
34# If you run PeerTube just behind a local proxy (nginx), keep 'loopback'
35# If you run PeerTube behind a remote proxy, add the proxy IP address (or subnet)
36trust_proxy:
37 - 'loopback'
38
97b6428a 39# Your database name will be database.name OR 'peertube'+database.suffix
825a5d9c 40database:
552cc9d6
C
41 hostname: 'localhost'
42 port: 5432
b0ce7c39 43 ssl: false
feb4bdfd 44 suffix: '_prod'
6c05c149
C
45 username: 'peertube'
46 password: 'peertube'
1c3386e8
RK
47 pool:
48 max: 5
552cc9d6 49
95540ed2 50# Redis server for short time storage
19f7b248 51# You can also specify a 'socket' path to a unix socket but first need to
ec2fa0d0 52# set 'hostname' and 'port' to null
94a5ff8a
C
53redis:
54 hostname: 'localhost'
55 port: 6379
56 auth: null
30c82f0d 57 db: 0
94a5ff8a 58
95540ed2 59# SMTP server to send emails
ecb4e35f 60smtp:
ed3f089c
IB
61 # smtp or sendmail
62 transport: smtp
63 # Path to sendmail command. Required if you use sendmail transport
64 sendmail: null
ecb4e35f 65 hostname: null
6401417d 66 port: 465 # If you use StartTLS: 587
ecb4e35f
C
67 username: null
68 password: null
6401417d 69 tls: true # If you use StartTLS: false
bebf2d89 70 disable_starttls: false
ecb4e35f
C
71 ca_file: null # Used for self signed certificates
72 from_address: 'admin@example.com'
73
dd2c2a52
C
74email:
75 body:
97b6428a 76 signature: 'PeerTube'
916937d7 77 subject:
97b6428a 78 prefix: '[PeerTube]'
dd2c2a52 79
3cf68b86
C
80# Update default PeerTube values
81# Set by API when the field is not provided and put as default value in client
82defaults:
83 # Change default values when publishing a video (upload/import/go Live)
84 publish:
85 download_enabled: true
7399a79f 86
3cf68b86
C
87 comments_enabled: true
88
89 # public = 1, unlisted = 2, private = 3, internal = 4
90 privacy: 1
91
92 # CC-BY = 1, CC-SA = 2, CC-ND = 3, CC-NC = 4, CC-NC-SA = 5, CC-NC-ND = 6, Public Domain = 7
93 # You can also choose a custom licence value added by a plugin
94 # No licence by default
95 licence: null
0bc53e20 96
a9bfa85d 97 p2p:
a4152bed 98 # Enable P2P by default in PeerTube client
a9bfa85d 99 # Can be enabled/disabled by anonymous users and logged in users
b65de1be
C
100 webapp:
101 enabled: true
102
a4152bed
C
103 # Enable P2P by default in PeerTube embed
104 # Can be enabled/disabled by URL option
b65de1be
C
105 embed:
106 enabled: true
a9bfa85d 107
552cc9d6
C
108# From the project root directory
109storage:
37ede348 110 tmp: '/var/www/peertube/storage/tmp/' # Use to download data (imports etc), store uploaded files before and during processing...
62549e6c 111 bin: '/var/www/peertube/storage/bin/'
59c48d49
C
112 avatars: '/var/www/peertube/storage/avatars/'
113 videos: '/var/www/peertube/storage/videos/'
0b16f5f2 114 streaming_playlists: '/var/www/peertube/storage/streaming-playlists/'
aafbc63a 115 redundancy: '/var/www/peertube/storage/redundancy/'
59c48d49
C
116 logs: '/var/www/peertube/storage/logs/'
117 previews: '/var/www/peertube/storage/previews/'
118 thumbnails: '/var/www/peertube/storage/thumbnails/'
119 torrents: '/var/www/peertube/storage/torrents/'
40e87e9e 120 captions: '/var/www/peertube/storage/captions/'
59c48d49 121 cache: '/var/www/peertube/storage/cache/'
345da516 122 plugins: '/var/www/peertube/storage/plugins/'
94fecbc1 123 # Overridable client files in client/dist/assets/images:
c80e458a 124 # - logo.svg
125 # - favicon.png
126 # - default-playlist.jpg
127 # - default-avatar-account.png
128 # - default-avatar-video-channel.png
129 # - and icons/*.png (PWA)
caf2aaf4
K
130 # Could contain for example assets/images/favicon.png
131 # If the file exists, peertube will serve it
863c1bc6 132 # If not, peertube will fallback to the default file
caf2aaf4 133 client_overrides: '/var/www/peertube/storage/client-overrides/'
4793c343 134
0305db28
JB
135object_storage:
136 enabled: false
137
138 # Without protocol, will default to HTTPS
139 endpoint: '' # 's3.amazonaws.com' or 's3.fr-par.scw.cloud' for example
140
141 region: 'us-east-1'
142
f9915efa 143 # Set this ACL on each uploaded object
a4152bed 144 upload_acl: 'public-read'
f9915efa 145
0305db28
JB
146 credentials:
147 # You can also use AWS_ACCESS_KEY_ID env variable
148 access_key_id: ''
149 # You can also use AWS_SECRET_ACCESS_KEY env variable
150 secret_access_key: ''
151
152 # Maximum amount to upload in one request to object storage
23c0b67d 153 max_upload_part: 100MB
0305db28
JB
154
155 streaming_playlists:
156 bucket_name: 'streaming-playlists'
157
158 # Allows setting all buckets to the same value but with a different prefix
159 prefix: '' # Example: 'streaming-playlists:'
160
161 # Base url for object URL generation, scheme and host will be replaced by this URL
162 # Useful when you want to use a CDN/external proxy
163 base_url: '' # Example: 'https://mirror.example.com'
164
165 # Same settings but for webtorrent videos
166 videos:
167 bucket_name: 'videos'
168 prefix: ''
169 base_url: ''
170
23e27dd5 171log:
31a91119 172 level: 'info' # 'debug' | 'info' | 'warn' | 'error'
42b40636 173
fcf4569f 174 rotation:
aafbc63a 175 enabled : true # Enabled by default, if disabled make sure that 'storage.logs' is pointing to a folder handled by logrotate
97b6428a
C
176 max_file_size: 12MB
177 max_files: 20
42b40636 178
97b6428a 179 anonymize_ip: false
42b40636 180
12c1e38d 181 log_ping_requests: true
a4152bed 182 log_tracker_unknown_infohash: true
42b40636 183
1e743faa 184 prettify_sql: false
23e27dd5 185
42b40636
C
186 # Accept warn/error logs coming from the client
187 accept_client_log: true
188
630d0a1b
C
189# Highly experimental support of Open Telemetry
190open_telemetry:
191 metrics:
192 enabled: false
193
194 # Create a prometheus exporter server on this port so prometheus server can scrape PeerTube metrics
195 prometheus_exporter:
196 port: 9091
197
198 tracing:
199 enabled: false
200
201 # Send traces to a Jaeger compatible endpoint
202 jaeger_exporter:
203 endpoint: ''
204
9a629c6e
C
205trending:
206 videos:
207 interval_days: 7 # Compute trending videos for the last x days
ba5d4a84
RK
208 algorithms:
209 enabled:
3d4e112d 210 - 'hot' # adaptation of Reddit's 'Hot' algorithm
ba5d4a84
RK
211 - 'most-viewed' # default, used initially by PeerTube as the trending page
212 - 'most-liked'
213 default: 'most-viewed'
9a629c6e 214
c48e82b5
C
215# Cache remote videos on your server, to help other instances to broadcast the video
216# You can define multiple caches using different sizes/strategies
217# Once you have defined your strategies, choose which instances you want to cache in admin -> manage follows -> following
218redundancy:
219 videos:
f9f899b9 220 check_interval: '1 hour' # How often you want to check new videos to cache
6040f87d 221 strategies: # Just uncomment strategies you want
d9bdd007
C
222# -
223# size: '10GB'
e5565833
C
224# # Minimum time the video must remain in the cache. Only accept values > 10 hours (to not overload remote instances)
225# min_lifetime: '48 hours'
d9bdd007
C
226# strategy: 'most-views' # Cache videos that have the most views
227# -
228# size: '10GB'
e5565833
C
229# # Minimum time the video must remain in the cache. Only accept values > 10 hours (to not overload remote instances)
230# min_lifetime: '48 hours'
d9bdd007
C
231# strategy: 'trending' # Cache trending videos
232# -
233# size: '10GB'
e5565833
C
234# # Minimum time the video must remain in the cache. Only accept values > 10 hours (to not overload remote instances)
235# min_lifetime: '48 hours'
d9bdd007 236# strategy: 'recently-added' # Cache recently added videos
e5565833 237# min_views: 10 # Having at least x views
c48e82b5 238
8c9e7875
C
239# Other instances that duplicate your content
240remote_redundancy:
241 videos:
242 # 'nobody': Do not accept remote redundancies
243 # 'anybody': Accept remote redundancies from anybody
244 # 'followings': Accept redundancies from instance followings
245 accept_from: 'anybody'
246
539d3f4f
C
247csp:
248 enabled: false
249 report_only: true # CSP directives are still being tested, so disable the report only mode at your own risk!
250 report_uri:
251
8155db66
C
252security:
253 # Set the X-Frame-Options header to help to mitigate clickjacking attacks
254 frameguard:
255 enabled: true
256
31b6ddf8 257tracker:
a4152bed 258 # If you disable the tracker, you disable the P2P on your PeerTube instance
31b6ddf8 259 enabled: true
de7f1114
C
260 # Only handle requests on your videos
261 # If you set this to false it means you have a public tracker
31b6ddf8
C
262 # Then, it is possible that clients overload your instance with external torrents
263 private: true
264 # Reject peers that do a lot of announces (could improve privacy of TCP/UDP peers)
265 reject_too_many_announces: false
266
8f0bc73d
C
267history:
268 videos:
269 # If you want to limit users videos history
270 # -1 means there is no limitations
271 # Other values could be '6 months' or '30 days' etc (PeerTube will periodically delete old entries from database)
272 max_age: -1
539d3f4f 273
cda03765
C
274views:
275 videos:
276 # PeerTube creates a database entry every hour for each video to track views over a period of time
277 # This is used in particular by the Trending page
278 # PeerTube could remove old remote video views if you want to reduce your database size (video view counter will not be altered)
279 # -1 means no cleanup
280 # Other values could be '6 months' or '30 days' etc (PeerTube will periodically delete old entries from database)
281 remote:
acfa2e30 282 max_age: '30 days'
cda03765 283
51353d9a
C
284 # PeerTube buffers local video views before updating and federating the video
285 local_buffer_update_interval: '30 minutes'
286
287 ip_view_expiration: '1 hour'
288
b2111066
C
289# Used to get country location of views of local videos
290geo_ip:
291 enabled: true
292
293 country:
294 database_url: 'https://dbip.mirror.framasoft.org/files/dbip-country-lite-latest.mmdb'
295
6702a1b2 296plugins:
aafbc63a
C
297 # The website PeerTube will ask for available PeerTube plugins and themes
298 # This is an unmoderated plugin index, so only install plugins/themes you trust
6702a1b2
C
299 index:
300 enabled: true
df9a1a13 301 check_latest_versions_interval: '12 hours' # How often you want to check new plugins/themes versions
6702a1b2
C
302 url: 'https://packages.joinpeertube.org'
303
3092e9bb
LB
304federation:
305 videos:
87568f93 306 federate_unlisted: false
3092e9bb 307
74d249bc
C
308 # Add a weekly job that cleans up remote AP interactions on local videos (shares, rates and comments)
309 # It removes objects that do not exist anymore, and potentially fix their URLs
c5e53d0e 310 cleanup_remote_interactions: true
74d249bc 311
32a18cbf
C
312peertube:
313 check_latest_version:
314 # Check and notify admins of new PeerTube versions
315 enabled: true
316 # You can use a custom URL if your want, that respect the format behind https://joinpeertube.org/api/v1/versions.json
317 url: 'https://joinpeertube.org/api/v1/versions.json'
cda03765 318
8d8a037e
JB
319webadmin:
320 configuration:
cf0c8ee5 321 edition:
e89392d7
C
322 # Set this to false if you don't want to allow config edition in the web interface by instance admins
323 allowed: true
8d8a037e 324
db9d882c
C
325# XML, Atom or JSON feeds
326feeds:
327 videos:
328 # Default number of videos displayed in feeds
329 count: 20
330
331 comments:
332 # Default number of comments displayed in feeds
333 count: 20
334
509cd56a
C
335###############################################################################
336#
db9d882c 337# From this point, almost all following keys can be overridden by the web interface
509cd56a
C
338# (local-production.json file). If you need to change some values, prefer to
339# use the web interface because the configuration will be automatically
de7f1114 340# reloaded without any need to restart PeerTube
509cd56a 341#
db9d882c
C
342# /!\ If you already have a local-production.json file, modification of some of
343# the following keys will have no effect /!\
509cd56a
C
344#
345###############################################################################
346
62ccb24e
C
347cache:
348 previews:
f842e810
C
349 size: 500 # Max number of previews you want to cache
350 captions:
351 size: 500 # Max number of video captions/subtitles you want to cache
90a8bd30
C
352 torrents:
353 size: 500 # Max number of video torrents you want to cache
62ccb24e 354
4793c343 355admin:
a4101923
C
356 # Used to generate the root user at first startup
357 # And to receive emails from the contact form
4793c343 358 email: 'admin@example.com'
e22528ac 359
a4101923
C
360contact_form:
361 enabled: true
362
e22528ac
C
363signup:
364 enabled: false
62ccb24e 365 limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
e89392d7 366 minimum_age: 16 # Used to configure the signup form
d9eaee39 367 requires_email_verification: false
6401417d 368 filters:
ff2c1fe8
RK
369 cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist
370 whitelist: []
371 blacklist: []
227d02fe 372
b0f9f39e 373user:
de7f1114
C
374 # Default value of maximum video bytes the user can upload (does not take into account transcoded files)
375 # Byte format is supported ("1GB" etc)
b0f9f39e
C
376 # -1 == unlimited
377 video_quota: -1
bee0abff 378 video_quota_daily: -1
b0f9f39e 379
754b6f5f
FC
380video_channels:
381 max_per_user: 20 # Allows each user to create up to 20 video channels.
382
97b6428a 383# If enabled, the video will be transcoded to mp4 (x264) with `faststart` flag
de7f1114 384# In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions
09f35e2a 385# Please, do not disable transcoding since many uploaded videos will not work
227d02fe 386transcoding:
1125c40a 387 enabled: true
1896bca0 388
fccbbc1a 389 # Allow your users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos
14e2014a 390 allow_additional_extensions: true
1896bca0 391
536598cf
C
392 # If a user uploads an audio file, PeerTube will create a video by merging the preview file and the audio file
393 allow_audio_files: true
1896bca0 394
9129b769 395 # Amount of threads used by ffmpeg for 1 transcoding job
98f535a5 396 threads: 1
9129b769
C
397 # Amount of transcoding jobs to execute in parallel
398 concurrency: 1
1896bca0
C
399
400 # Choose the transcoding profile
401 # New profiles can be added by plugins
402 # Available in core PeerTube: 'default'
403 profile: 'default'
404
09f35e2a 405 resolutions: # Only created if the original video has a higher resolution, uses more storage!
6ad88df8 406 0p: false # audio-only (creates mp4 without video stream, always created when enabled)
8dd754c7 407 144p: false
1125c40a
C
408 240p: false
409 360p: false
410 480p: false
411 720p: false
412 1080p: false
b7085c71 413 1440p: false
ad3405d0 414 2160p: false
d7a25329 415
84cae54e
C
416 # Transcode and keep original resolution, even if it's above your maximum enabled resolution
417 always_transcode_original_resolution: true
418
d7a25329
C
419 # Generate videos in a WebTorrent format (what we do since the first PeerTube release)
420 # If you also enabled the hls format, it will multiply videos storage by 2
04cda1d7 421 # If disabled, breaks federation with PeerTube instances < 2.1
d7a25329 422 webtorrent:
6a882428 423 enabled: false
d7a25329 424
5d9e4eaa 425 # /!\ Requires ffmpeg >= 4.1
7f8f8bdb 426 # Generate HLS playlists and fragmented MP4 files. Better playback than with WebTorrent:
09209296
C
427 # * Resolution change is smoother
428 # * Faster playback in particular with long videos
429 # * More stable playback (less bugs/infinite loading)
d7a25329 430 # If you also enabled the webtorrent format, it will multiply videos storage by 2
09209296 431 hls:
6a882428 432 enabled: true
66b16caf 433
d2345ce9
C
434live:
435 enabled: false
436
437 # Limit lives duration
1896bca0 438 # -1 == unlimited
c9bc850e 439 max_duration: -1 # For example: '5 hours'
d2345ce9
C
440
441 # Limit max number of live videos created on your instance
442 # -1 == unlimited
443 max_instance_lives: 20
444
445 # Limit max number of live videos created by a user on your instance
446 # -1 == unlimited
447 max_user_lives: 3
448
449 # Allow your users to save a replay of their live
450 # PeerTube will transcode segments in a video file
451 # If the user daily/total quota is reached, PeerTube will stop the live
452 # /!\ transcoding.enabled (and not live.transcoding.enabled) has to be true to create a replay
453 allow_replay: true
454
f443a746
C
455 # Allow your users to change latency settings (small latency/default/high latency)
456 # Small latency live streams cannot use P2P
457 # High latency live streams can increase P2P ratio
458 latency_setting:
459 enabled: true
460
4f20856e 461 # Your firewall should accept traffic from this port in TCP if you enable live
d2345ce9 462 rtmp:
df1db951 463 enabled: true
cfbe6be5 464
9c5e5822 465 # Listening hostname/port for RTMP server
d322f854
C
466 # '::' to listen on IPv6 and IPv4, '0.0.0.0' to listen on IPv4
467 # Use null to automatically listen on '::' if IPv6 is available, or '0.0.0.0' otherwise
468 hostname: null
cfbe6be5
C
469 port: 1935
470
9c5e5822 471 # Public hostname of your RTMP server
cfbe6be5
C
472 # Use null to use the same value than `webserver.hostname`
473 public_hostname: null
d2345ce9 474
df1db951
C
475 rtmps:
476 enabled: false
cfbe6be5 477
9c5e5822 478 # Listening hostname/port for RTMPS server
d322f854
C
479 # '::' to listen on IPv6 and IPv4, '0.0.0.0' to listen on IPv4
480 # Use null to automatically listen on '::' if IPv6 is available, or '0.0.0.0' otherwise
481 hostname: null
df1db951 482 port: 1936
cfbe6be5
C
483
484 # Absolute paths
df1db951
C
485 key_file: ''
486 cert_file: ''
cfbe6be5 487
9c5e5822 488 # Public hostname of your RTMPS server
cfbe6be5
C
489 # Use null to use the same value than `webserver.hostname`
490 public_hostname: null
df1db951 491
d2345ce9
C
492 # Allow to transcode the live streaming in multiple live resolutions
493 transcoding:
cf3e0d69 494 enabled: true
d2345ce9
C
495 threads: 2
496
1896bca0
C
497 # Choose the transcoding profile
498 # New profiles can be added by plugins
499 # Available in core PeerTube: 'default'
500 profile: 'default'
501
d2345ce9 502 resolutions:
8dd754c7 503 144p: false
d2345ce9
C
504 240p: false
505 360p: false
506 480p: false
507 720p: false
508 1080p: false
b7085c71 509 1440p: false
d2345ce9
C
510 2160p: false
511
84cae54e
C
512 # Also transcode original resolution, even if it's above your maximum enabled resolution
513 always_transcode_original_resolution: true
514
92e66e04 515video_studio:
c729caf6 516 # Enable video edition by users (cut, add intro/outro, add watermark etc)
a5a1690d 517 # If enabled, users can create transcoding tasks as they wish
c729caf6
C
518 enabled: false
519
5d08a6a7
C
520import:
521 # Add ability for your users to import remote videos (from YouTube, torrent...)
522 videos:
9129b769
C
523 # Amount of import jobs to execute in parallel
524 concurrency: 1
525
3eba7ab8
C
526 # Set a custom video import timeout to not block import queue
527 timeout: '2 hours'
528
474542d7
C
529 # Classic HTTP or all sites supported by youtube-dl https://rg3.github.io/youtube-dl/supportedsites.html
530 http:
531 # We recommend to use a HTTP proxy if you enable HTTP import to prevent private URL access from this server
532 # See https://docs.joinpeertube.org/maintain-configuration?id=security for more information
5d08a6a7 533 enabled: false
e0409585 534
de7f1114
C
535 youtube_dl_release:
536 # Direct download URL to youtube-dl binary
537 # Github releases API is also supported
538 # Examples:
539 # * https://api.github.com/repos/ytdl-org/youtube-dl/releases
540 # * https://api.github.com/repos/yt-dlp/yt-dlp/releases
f7569270
C
541 # * https://yt-dl.org/downloads/latest/youtube-dl
542 url: 'https://api.github.com/repos/yt-dlp/yt-dlp/releases'
de7f1114 543
f7569270
C
544 # Release binary name: 'yt-dlp' or 'youtube-dl'
545 name: 'yt-dlp'
de7f1114 546
22c77786
F
547 # Path to the python binary to execute for youtube-dl or yt-dlp
548 python_path: '/usr/bin/python3'
549
677012b4 550 # IPv6 is very strongly rate-limited on most sites supported by youtube-dl
e0409585
C
551 force_ipv4: false
552
474542d7
C
553 # Magnet URI or torrent file (use classic TCP/UDP/WebSeed to download the file)
554 torrent:
555 # We recommend to only enable magnet URI/torrent import if you trust your users
556 # See https://docs.joinpeertube.org/maintain-configuration?id=security for more information
a84b8fa5 557 enabled: false
5d08a6a7 558
2a491182
F
559 # Add ability for your users to synchronize their channels with external channels, playlists, etc.
560 video_channel_synchronization:
561 enabled: false
562
563 max_per_user: 10
564
565 check_interval: 1 hour
566
567 # Number of latest published videos to check and to potentially import when syncing a channel
568 videos_limit_per_synchronization: 10
569
7ccddd7b
JM
570auto_blacklist:
571 # New videos automatically blacklisted so moderators can review before publishing
572 videos:
573 of_users:
5b9c965d
C
574 enabled: false
575
95540ed2 576# Instance settings
66b16caf
C
577instance:
578 name: 'PeerTube'
51de2c7f 579 short_description: 'PeerTube, an ActivityPub-federated video streaming platform using P2P directly in your web browser.'
8ae03c37
C
580 description: 'Welcome to this PeerTube instance!' # Support markdown
581 terms: 'No terms for now.' # Support markdown
582 code_of_conduct: '' # Supports markdown
583
584 # Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc
585 moderation_information: '' # Supports markdown
586
587 # Why did you create this instance?
d605328a 588 creation_reason: '' # Supports Markdown
8ae03c37
C
589
590 # Who is behind the instance? A single person? A non profit?
d605328a 591 administrator: '' # Supports Markdown
8ae03c37
C
592
593 # How long do you plan to maintain this instance?
d605328a 594 maintenance_lifetime: '' # Supports Markdown
8ae03c37 595
96a4a7c3 596 # How will you pay the PeerTube instance server? With your own funds? With users donations? Advertising?
d605328a 597 business_model: '' # Supports Markdown
8ae03c37 598
be04c6fd 599 # If you want to explain on what type of hardware your PeerTube instance runs
97b6428a 600 # Example: '2 vCore, 2GB RAM...'
be04c6fd
C
601 hardware_information: '' # Supports Markdown
602
8ae03c37
C
603 # What are the main languages of your instance? To interact with your users for example
604 # Uncomment or add the languages you want
605 # List of supported languages: https://peertube.cpy.re/api/v1/videos/languages
606 languages:
607# - en
608# - es
609# - fr
610
611 # You can specify the main categories of your instance (dedicated to music, gaming or politics etc)
612 # Uncomment or add the category ids you want
613 # List of supported categories: https://peertube.cpy.re/api/v1/videos/categories
614 categories:
615# - 1 # Music
616# - 2 # Films
617# - 3 # Vehicles
618# - 4 # Art
619# - 5 # Sports
620# - 6 # Travels
621# - 7 # Gaming
622# - 8 # People
623# - 9 # Comedy
624# - 10 # Entertainment
625# - 11 # News & Politics
626# - 12 # How To
627# - 13 # Education
628# - 14 # Activism
629# - 15 # Science & Technology
630# - 16 # Animals
631# - 17 # Kids
632# - 18 # Food
633
901637bb 634 default_client_route: '/videos/trending'
8ae03c37 635
f8802489
C
636 # Whether or not the instance is dedicated to NSFW content
637 # Enabling it will allow other administrators to know that you are mainly federating sensitive content
638 # Moreover, the NSFW checkbox on video upload will be automatically checked by default
639 is_nsfw: false
97b6428a 640 # By default, `do_not_list` or `blur` or `display` NSFW videos
0883b324
C
641 # Could be overridden per user with a setting
642 default_nsfw_policy: 'do_not_list'
8ae03c37 643
00b5556c
C
644 customizations:
645 javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
646 css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime
97b6428a 647 # Robot.txt rules. To disallow robots to crawl your instance and disallow indexation of your site, add `/` to `Disallow:`
ac235c37
RK
648 robots: |
649 User-agent: *
df182b37 650 Disallow:
de7f1114 651 # Security.txt rules. To discourage researchers from testing your instance and disable security.txt integration, set this to an empty string
5447516b 652 securitytxt:
97b6428a 653 '# 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:'
8be1afa1
C
654
655services:
656 # Cards configuration to format video in Twitter
657 twitter:
351d5225 658 username: '@Chocobozzz' # Indicates the Twitter account for the website or platform on which the content was published
8be1afa1
C
659 # If true, a video player will be embedded in the Twitter feed on PeerTube video share
660 # If false, we use an image link card that will redirect on your PeerTube instance
97b6428a 661 # Change it to `true`, and then test on https://cards-dev.twitter.com/validator to see if you are whitelisted
19f7b248 662 whitelisted: false
5b9c965d
C
663
664followers:
665 instance:
666 # Allow or not other instances to follow yours
667 enabled: true
14893eb7
C
668 # Whether or not an administrator must manually validate a new follower
669 manual_approval: false
7cd4d2ba 670
8424c402
C
671followings:
672 instance:
673 # If you want to automatically follow back new instance followers
674 # If this option is enabled, use the mute feature instead of deleting followings
675 # /!\ Don't enable this if you don't have a reactive moderation team /!\
676 auto_follow_back:
677 enabled: false
678
679 # If you want to automatically follow instances of the public index
680 # If this option is enabled, use the mute feature instead of deleting followings
681 # /!\ Don't enable this if you don't have a reactive moderation team /!\
682 auto_follow_index:
683 enabled: false
95cd31f1
C
684 # Host your own using https://framagit.org/framasoft/peertube/instances-peertube#peertube-auto-follow
685 index_url: ''
8424c402 686
7cd4d2ba
C
687theme:
688 default: 'default'
72c33e71
C
689
690broadcast_message:
691 enabled: false
692 message: '' # Support markdown
693 level: 'info' # 'info' | 'warning' | 'error'
694 dismissable: false
5fb2e288
C
695
696search:
697 # Add ability to fetch remote videos/actors by their URI, that may not be federated with your instance
698 # If enabled, the associated group will be able to "escape" from the instance follows
699 # That means they will be able to follow channels, watch videos, list videos of non followed instances
700 remote_uri:
701 users: true
702 anonymous: false
703
704 # Use a third party index instead of your local index, only for search results
705 # Useful to discover content outside of your instance
706 # If you enable search_index, you must enable remote_uri search for users
707 # If you do not enable remote_uri search for anonymous user, your instance will redirect the user on the origin instance
708 # instead of loading the video locally
709 search_index:
710 enabled: false
711 # URL of the search index, that should use the same search API and routes
712 # than PeerTube: https://docs.joinpeertube.org/api-rest-reference.html
713 # You should deploy your own with https://framagit.org/framasoft/peertube/search-index,
714 # and can use https://search.joinpeertube.org/ for tests, but keep in mind the latter is an unmoderated search index
715 url: ''
716 # You can disable local search, so users only use the search index
717 disable_local_search: false
718 # If you did not disable local search, you can decide to use the search index by default
719 is_default_search: false
3cf68b86
C
720
721# PeerTube client/interface configuration
722client:
723 videos:
724 miniature:
725 # By default PeerTube client displays author username
726 prefer_author_display_name: false
2c102aac 727 display_author_avatar: false
60233e90 728 resumable_upload:
729 # Max size of upload chunks, e.g. '90MB'
730 # If null, it will be calculated based on network speed
731 max_chunk_size: null
3cf68b86
C
732
733 menu:
734 login:
735 # If you enable only one external auth plugin
736 # You can automatically redirect your users on this external platform when they click on the login button
737 redirect_on_single_external_auth: false