2016-12-27 18:35:56 +01:00
|
|
|
listen:
|
|
|
|
port: 9000
|
|
|
|
|
2016-10-01 12:24:18 +02:00
|
|
|
# Correspond to your reverse proxy "listen" configuration
|
2016-05-20 15:27:16 +02:00
|
|
|
webserver:
|
2017-10-17 11:13:01 +02:00
|
|
|
https: true
|
2016-10-23 19:41:17 +02:00
|
|
|
hostname: 'example.com'
|
2017-10-17 11:13:01 +02:00
|
|
|
port: 443
|
2016-10-01 12:40:02 +02:00
|
|
|
|
2017-01-16 09:04:54 +01:00
|
|
|
# Your database name will be "peertube"+database.suffix
|
2016-10-01 12:40:02 +02:00
|
|
|
database:
|
2016-12-27 18:35:56 +01:00
|
|
|
hostname: 'localhost'
|
|
|
|
port: 5432
|
2016-12-11 21:50:51 +01:00
|
|
|
suffix: '_prod'
|
2017-01-12 15:42:40 +01:00
|
|
|
username: 'peertube'
|
|
|
|
password: 'peertube'
|
2016-12-27 18:35:56 +01:00
|
|
|
|
2018-01-25 15:05:18 +01:00
|
|
|
redis:
|
|
|
|
hostname: 'localhost'
|
|
|
|
port: 6379
|
|
|
|
auth: null
|
|
|
|
|
2018-01-30 13:27:07 +01:00
|
|
|
smtp:
|
|
|
|
hostname: null
|
|
|
|
port: 465
|
|
|
|
username: null
|
|
|
|
password: null
|
|
|
|
tls: true
|
|
|
|
ca_file: null # Used for self signed certificates
|
|
|
|
from_address: 'admin@example.com'
|
|
|
|
|
2016-12-27 18:35:56 +01:00
|
|
|
# From the project root directory
|
|
|
|
storage:
|
2018-01-23 09:00:23 +01:00
|
|
|
avatars: '/var/www/peertube/storage/avatars/'
|
|
|
|
videos: '/var/www/peertube/storage/videos/'
|
|
|
|
logs: '/var/www/peertube/storage/logs/'
|
|
|
|
previews: '/var/www/peertube/storage/previews/'
|
|
|
|
thumbnails: '/var/www/peertube/storage/thumbnails/'
|
|
|
|
torrents: '/var/www/peertube/storage/torrents/'
|
|
|
|
cache: '/var/www/peertube/storage/cache/'
|
2017-02-16 19:19:56 +01:00
|
|
|
|
2018-01-19 13:58:13 +01:00
|
|
|
log:
|
2018-02-14 15:33:25 +01:00
|
|
|
level: 'info' # debug/info/warning/error
|
2018-01-19 13:58:13 +01:00
|
|
|
|
2017-08-26 09:19:50 +02:00
|
|
|
cache:
|
|
|
|
previews:
|
2017-10-17 11:13:01 +02:00
|
|
|
size: 100 # Max number of previews you want to cache
|
2017-08-26 09:19:50 +02:00
|
|
|
|
2017-02-16 19:19:56 +01:00
|
|
|
admin:
|
|
|
|
email: 'admin@example.com'
|
2017-03-10 11:32:39 +01:00
|
|
|
|
|
|
|
signup:
|
|
|
|
enabled: false
|
2017-08-26 09:19:50 +02:00
|
|
|
limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
|
2017-05-02 22:02:27 +02:00
|
|
|
|
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
|
|
|
|
|
2017-05-02 22:02:27 +02: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 11:06:13 +02:00
|
|
|
resolutions: # Only created if the original video has a higher resolution
|
|
|
|
240p: true
|
|
|
|
360p: true
|
|
|
|
480p: true
|
|
|
|
720p: true
|
|
|
|
1080p: true
|
2018-01-31 16:42:40 +01:00
|
|
|
|
|
|
|
instance:
|
|
|
|
name: 'PeerTube'
|
|
|
|
description: '' # Support markdown
|
|
|
|
terms: '' # Support markdown
|