]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - config/default.yaml
2826e76f8220dfb7b88dae9e64cbac72f7512740
[github/Chocobozzz/PeerTube.git] / config / default.yaml
1 listen:
2 hostname: '127.0.0.1'
3 port: 9000
4
5 webserver:
6 https: false
7 hostname: 'localhost'
8 port: 9000
9
10 # Proxies to trust to get real client IP
11 # If you run PeerTube just behind a local proxy (nginx), keep 'loopback'
12 # If you run PeerTube behind a remote proxy, add the proxy IP address (or subnet)
13 trust_proxy:
14 - 'loopback'
15
16 # Your database name will be "peertube"+database.suffix
17 database:
18 hostname: 'localhost'
19 port: 5432
20 suffix: '_dev'
21 username: 'peertube'
22 password: 'peertube'
23
24 redis:
25 hostname: 'localhost'
26 port: 6379
27 auth: null
28
29 smtp:
30 hostname: null
31 port: 465
32 username: null
33 password: null
34 tls: true
35 disable_starttls: false
36 ca_file: null # Used for self signed certificates
37 from_address: 'admin@example.com'
38
39 # From the project root directory
40 storage:
41 avatars: 'storage/avatars/'
42 videos: 'storage/videos/'
43 logs: 'storage/logs/'
44 previews: 'storage/previews/'
45 thumbnails: 'storage/thumbnails/'
46 torrents: 'storage/torrents/'
47 cache: 'storage/cache/'
48
49 log:
50 level: 'info' # debug/info/warning/error
51
52 cache:
53 previews:
54 size: 1 # Max number of previews you want to cache
55
56 admin:
57 email: 'admin@example.com' # Your personal email as administrator
58
59 signup:
60 enabled: false
61 limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
62
63 user:
64 # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).
65 # -1 == unlimited
66 video_quota: -1
67
68 # If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
69 # In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions.
70 # Uses a lot of CPU and increases storage!
71 transcoding:
72 enabled: true
73 threads: 1
74 resolutions: # Only created if the original video has a higher resolution
75 240p: false
76 360p: false
77 480p: false
78 720p: false
79 1080p: false
80
81 instance:
82 name: 'PeerTube'
83 short_description: 'PeerTube, a federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.'
84 description: 'Welcome to this PeerTube instance!' # Support markdown
85 terms: 'No terms for now.' # Support markdown
86 default_client_route: '/videos/trending'
87 # By default, "do_not_list" or "blur" or "display" NSFW videos
88 # Could be overridden per user with a setting
89 default_nsfw_policy: 'do_not_list'
90 customizations:
91 javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
92 css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime
93
94 services:
95 # Cards configuration to format video in Twitter
96 twitter:
97 username: '@Chocobozzz' # The Twitter @username the card should be attributed to
98 # If true, a video player will be embedded in the Twitter feed on PeerTube video share
99 # If false, we use an image link card that will redirect on your PeerTube instance
100 # Change it to "true", and then test on https://cards-dev.twitter.com/validator to see if you are whitelisted
101 whitelisted: false