aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/docker/production/config/production.yaml
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-03-23 11:22:26 +0100
committerChocobozzz <me@florianbigard.com>2018-03-23 11:22:26 +0100
commit95540ed23a2e6ae6d48739f211aa24df57278413 (patch)
treedf45ecb921edc8a00747799912f086d1b911a117 /support/docker/production/config/production.yaml
parenta216c6233d46689f73a7c542e6170555b7f287b6 (diff)
downloadPeerTube-95540ed23a2e6ae6d48739f211aa24df57278413.tar.gz
PeerTube-95540ed23a2e6ae6d48739f211aa24df57278413.tar.zst
PeerTube-95540ed23a2e6ae6d48739f211aa24df57278413.zip
Prepare building docker files on docker hub
Diffstat (limited to 'support/docker/production/config/production.yaml')
-rw-r--r--support/docker/production/config/production.yaml50
1 files changed, 1 insertions, 49 deletions
diff --git a/support/docker/production/config/production.yaml b/support/docker/production/config/production.yaml
index fdcbeb5a0..41272ba26 100644
--- a/support/docker/production/config/production.yaml
+++ b/support/docker/production/config/production.yaml
@@ -21,21 +21,9 @@ redis:
21 port: 6379 21 port: 6379
22 auth: null 22 auth: null
23 23
24# SMTP server to send emails
25smtp:
26 hostname: null
27 port: 465
28 username: null
29 password: null
30 tls: true
31 disable_starttls: false
32 ca_file: null # Used for self signed certificates
33 from_address: 'admin@example.com'
34
35# From the project root directory 24# From the project root directory
36storage: 25storage:
37 avatars: '../data/avatars/' 26 avatars: '../data/avatars/'
38 certs: '../data/certs/'
39 videos: '../data/videos/' 27 videos: '../data/videos/'
40 logs: '../data/logs/' 28 logs: '../data/logs/'
41 previews: '../data/previews/' 29 previews: '../data/previews/'
@@ -46,41 +34,5 @@ storage:
46log: 34log:
47 level: 'info' # debug/info/warning/error 35 level: 'info' # debug/info/warning/error
48 36
49cache:
50 previews:
51 size: 100 # Max number of previews you want to cache
52
53admin: 37admin:
54 email: undefined 38 email: null
55
56signup:
57 enabled: false
58 limit: -1
59
60user:
61 # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).
62 # -1 == unlimited
63 video_quota: -1
64
65# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
66# Uses a lot of CPU!
67transcoding:
68 enabled: false
69 threads: 2
70 resolutions: # Only created if the original video has a higher resolution
71 240p: true
72 360p: true
73 480p: true
74 720p: true
75 1080p: true
76
77# Instance settings
78instance:
79 name: 'PeerTube'
80 short_description: 'PeerTube, a federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.'
81 description: '' # Support markdown
82 terms: '' # Support markdown
83 default_client_route: '/videos/trending'
84 customizations:
85 javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
86 css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime