]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - config/default.yaml
Fix change detection in app component
[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 db: 0
29
30 smtp:
31 hostname: null
32 port: 465
33 username: null
34 password: null
35 tls: true
36 disable_starttls: false
37 ca_file: null # Used for self signed certificates
38 from_address: 'admin@example.com'
39
40 # From the project root directory
41 storage:
42 avatars: 'storage/avatars/'
43 videos: 'storage/videos/'
44 logs: 'storage/logs/'
45 previews: 'storage/previews/'
46 thumbnails: 'storage/thumbnails/'
47 torrents: 'storage/torrents/'
48 cache: 'storage/cache/'
49
50 log:
51 level: 'info' # debug/info/warning/error
52
53 cache:
54 previews:
55 size: 1 # Max number of previews you want to cache
56
57 admin:
58 email: 'admin@example.com' # Your personal email as administrator
59
60 signup:
61 enabled: false
62 limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
63
64 user:
65 # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).
66 # -1 == unlimited
67 video_quota: -1
68
69 # If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
70 # In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions.
71 # Uses a lot of CPU and increases storage!
72 transcoding:
73 enabled: true
74 threads: 1
75 resolutions: # Only created if the original video has a higher resolution
76 240p: false
77 360p: false
78 480p: false
79 720p: false
80 1080p: false
81
82 instance:
83 name: 'PeerTube'
84 short_description: 'PeerTube, a federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.'
85 description: 'Welcome to this PeerTube instance!' # Support markdown
86 terms: 'No terms for now.' # Support markdown
87 default_client_route: '/videos/trending'
88 # By default, "do_not_list" or "blur" or "display" NSFW videos
89 # Could be overridden per user with a setting
90 default_nsfw_policy: 'do_not_list'
91 customizations:
92 javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
93 css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime
94 # Robot.txt rules. To allow robots to crawl your instance and allow indexation of your site, remove the '/'
95 robots: |
96 User-agent: *
97 Disallow: /
98
99 services:
100 # Cards configuration to format video in Twitter
101 twitter:
102 username: '@Chocobozzz' # The Twitter @username the card should be attributed to
103 # If true, a video player will be embedded in the Twitter feed on PeerTube video share
104 # If false, we use an image link card that will redirect on your PeerTube instance
105 # Change it to "true", and then test on https://cards-dev.twitter.com/validator to see if you are whitelisted
106 whitelisted: false