PeerTube/config/default.yaml

55 lines
1.3 KiB
YAML
Raw Normal View History

2015-06-09 17:41:40 +02:00
listen:
port: 9000
webserver:
https: false
hostname: 'localhost'
2015-06-09 17:41:40 +02:00
port: 9000
# Your database name will be "peertube"+database.suffix
2015-06-09 17:41:40 +02:00
database:
hostname: 'localhost'
2016-12-11 21:50:51 +01:00
port: 5432
suffix: '_dev'
2017-01-04 20:59:23 +01:00
username: 'peertube'
password: 'peertube'
2015-06-09 17:41:40 +02:00
# From the project root directory
storage:
2018-01-15 11:10:46 +01:00
avatars: 'storage/avatars/'
videos: 'storage/videos/'
logs: 'storage/logs/'
previews: 'storage/previews/'
thumbnails: 'storage/thumbnails/'
torrents: 'storage/torrents/'
cache: 'storage/cache/'
2017-07-12 11:56:02 +02:00
cache:
previews:
size: 1 # Max number of previews you want to cache
2017-02-16 19:19:56 +01:00
admin:
email: 'admin@example.com'
2017-03-10 11:32:39 +01:00
signup:
enabled: false
limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
2017-09-04 20:07:54 +02:00
user:
# Default value of maximum video BYTES the user can upload (does not take into account transcoded files).
# -1 == unlimited
video_quota: -1
# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
# In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions.
# Uses a lot of CPU and increases storage!
transcoding:
2017-05-04 21:51:00 +02:00
enabled: false
threads: 2
resolutions: # Only created if the original video has a higher resolution
240p: true
360p: true
480p: true
720p: true
1080p: true