2016-12-27 11:35:56 -06:00
listen:
port: 9000
2016-10-01 05:24:18 -05:00
# Correspond to your reverse proxy "listen" configuration
2016-05-20 08:27:16 -05:00
webserver:
2017-10-17 04:13:01 -05:00
https: true
2016-10-23 12:41:17 -05:00
hostname: 'example.com'
2017-10-17 04:13:01 -05:00
port: 443
2016-10-01 05:40:02 -05:00
2017-01-16 02:04:54 -06:00
# Your database name will be "peertube"+database.suffix
2016-10-01 05:40:02 -05:00
database:
2016-12-27 11:35:56 -06:00
hostname: 'localhost'
port: 5432
2016-12-11 14:50:51 -06:00
suffix: '_prod'
2017-01-12 08:42:40 -06:00
username: 'peertube'
password: 'peertube'
2016-12-27 11:35:56 -06:00
2018-01-25 08:05:18 -06:00
redis:
hostname: 'localhost'
port: 6379
auth: null
2018-01-30 06:27:07 -06:00
smtp:
hostname: null
port: 465
username: null
password: null
tls: true
2018-03-22 10:12:52 -05:00
disable_starttls: false
2018-01-30 06:27:07 -06:00
ca_file: null # Used for self signed certificates
from_address: 'admin@example.com'
2016-12-27 11:35:56 -06:00
# From the project root directory
storage:
2018-01-23 02:00:23 -06: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 12:19:56 -06:00
2018-01-19 06:58:13 -06:00
log:
2018-02-14 08:33:25 -06:00
level: 'info' # debug/info/warning/error
2018-01-19 06:58:13 -06:00
2018-02-27 10:19:22 -06:00
###############################################################################
#
2018-02-27 10:24:27 -06:00
# From this point, all the following keys can be overriden by the web interface
2018-02-27 10:19:22 -06:00
# (local-production.json file). If you need to change some values, prefer to
# use the web interface because the configuration will be automatically
# reloaded without any need to restart PeerTube.
#
# /!\ If you already have a local-production.json file, the modification of the
# following keys will have no effect /!\.
#
###############################################################################
2017-08-26 02:19:50 -05:00
cache:
previews:
2017-10-17 04:13:01 -05:00
size: 100 # Max number of previews you want to cache
2017-08-26 02:19:50 -05:00
2017-02-16 12:19:56 -06:00
admin:
email: 'admin@example.com'
2017-03-10 04:32:39 -06:00
signup:
enabled: false
2017-08-26 02:19:50 -05:00
limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
2017-05-02 15:02:27 -05:00
2017-09-04 13:07:54 -05: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 15:02:27 -05:00
# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
# Uses a lot of CPU!
transcoding:
2018-02-26 03:00:44 -06:00
enabled: true
2018-02-26 05:12:35 -06:00
threads: 1
2017-10-09 04:06:13 -05:00
resolutions: # Only created if the original video has a higher resolution
2018-02-26 03:00:44 -06:00
240p: false
360p: false
480p: false
720p: false
1080p: false
2018-01-31 09:42:40 -06:00
instance:
name: 'PeerTube'
2018-03-15 08:31:08 -05:00
short_description: 'PeerTube, a federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.'
2018-01-31 09:42:40 -06:00
description: '' # Support markdown
terms: '' # Support markdown
2018-03-01 06:57:29 -06:00
default_client_route: '/videos/trending'
2018-02-22 03:22:53 -06:00
customizations:
javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime