2016-12-27 12:35:56 -05:00
|
|
|
listen:
|
|
|
|
port: 9000
|
|
|
|
|
2016-10-01 06:24:18 -04:00
|
|
|
# Correspond to your reverse proxy "listen" configuration
|
2016-05-20 09:27:16 -04:00
|
|
|
webserver:
|
2017-10-17 05:13:01 -04:00
|
|
|
https: true
|
2016-10-23 13:41:17 -04:00
|
|
|
hostname: 'example.com'
|
2017-10-17 05:13:01 -04:00
|
|
|
port: 443
|
2016-10-01 06:40:02 -04:00
|
|
|
|
2017-01-16 03:04:54 -05:00
|
|
|
# Your database name will be "peertube"+database.suffix
|
2016-10-01 06:40:02 -04:00
|
|
|
database:
|
2016-12-27 12:35:56 -05:00
|
|
|
hostname: 'localhost'
|
|
|
|
port: 5432
|
2016-12-11 15:50:51 -05:00
|
|
|
suffix: '_prod'
|
2017-01-12 09:42:40 -05:00
|
|
|
username: 'peertube'
|
|
|
|
password: 'peertube'
|
2016-12-27 12:35:56 -05:00
|
|
|
|
|
|
|
# From the project root directory
|
|
|
|
storage:
|
|
|
|
certs: 'certs/'
|
|
|
|
videos: 'videos/'
|
|
|
|
logs: 'logs/'
|
|
|
|
previews: 'previews/'
|
|
|
|
thumbnails: 'thumbnails/'
|
|
|
|
torrents: 'torrents/'
|
2017-07-12 05:56:02 -04:00
|
|
|
cache: 'cache/'
|
2017-02-16 13:19:56 -05:00
|
|
|
|
2017-08-26 03:19:50 -04:00
|
|
|
cache:
|
|
|
|
previews:
|
2017-10-17 05:13:01 -04:00
|
|
|
size: 100 # Max number of previews you want to cache
|
2017-08-26 03:19:50 -04:00
|
|
|
|
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-08-26 03:19:50 -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
|
|
|
|
# Uses a lot of CPU!
|
|
|
|
transcoding:
|
|
|
|
enabled: false
|
|
|
|
threads: 2
|
2017-10-09 05:06:13 -04:00
|
|
|
resolutions: # Only created if the original video has a higher resolution
|
|
|
|
240p: true
|
|
|
|
360p: true
|
|
|
|
480p: true
|
|
|
|
720p: true
|
|
|
|
1080p: true
|