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