]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - config/default.yaml
Fix change detection in app component
[github/Chocobozzz/PeerTube.git] / config / default.yaml
CommitLineData
8c308c2b 1listen:
cff8b272 2 hostname: '127.0.0.1'
8c308c2b
C
3 port: 9000
4
5webserver:
6 https: false
3737bbaf 7 hostname: 'localhost'
8c308c2b
C
8 port: 9000
9
490b595a
C
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)
13trust_proxy:
14 - 'loopback'
15
98dffd10 16# Your database name will be "peertube"+database.suffix
8c308c2b 17database:
3737bbaf 18 hostname: 'localhost'
feb4bdfd
C
19 port: 5432
20 suffix: '_dev'
55fa55a9
C
21 username: 'peertube'
22 password: 'peertube'
8c308c2b 23
94a5ff8a
C
24redis:
25 hostname: 'localhost'
26 port: 6379
27 auth: null
30c82f0d 28 db: 0
94a5ff8a 29
ecb4e35f
C
30smtp:
31 hostname: null
32 port: 465
33 username: null
34 password: null
35 tls: true
bebf2d89 36 disable_starttls: false
ecb4e35f
C
37 ca_file: null # Used for self signed certificates
38 from_address: 'admin@example.com'
39
8c308c2b
C
40# From the project root directory
41storage:
6b2ef589 42 avatars: 'storage/avatars/'
6b2ef589
C
43 videos: 'storage/videos/'
44 logs: 'storage/logs/'
45 previews: 'storage/previews/'
46 thumbnails: 'storage/thumbnails/'
47 torrents: 'storage/torrents/'
48 cache: 'storage/cache/'
f981dae8 49
23e27dd5 50log:
a0922eb9 51 level: 'info' # debug/info/warning/error
23e27dd5 52
f981dae8
C
53cache:
54 previews:
55 size: 1 # Max number of previews you want to cache
4793c343
C
56
57admin:
ecb4e35f 58 email: 'admin@example.com' # Your personal email as administrator
e22528ac
C
59
60signup:
61 enabled: false
291e8d3e 62 limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
227d02fe 63
b0f9f39e
C
64user:
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
227d02fe 69# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
40298b02
C
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!
227d02fe 72transcoding:
1125c40a 73 enabled: true
98f535a5 74 threads: 1
40298b02 75 resolutions: # Only created if the original video has a higher resolution
1125c40a
C
76 240p: false
77 360p: false
78 480p: false
79 720p: false
80 1080p: false
66b16caf
C
81
82instance:
83 name: 'PeerTube'
2e3a0215 84 short_description: 'PeerTube, a federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.'
bf874e33
C
85 description: 'Welcome to this PeerTube instance!' # Support markdown
86 terms: 'No terms for now.' # Support markdown
901637bb 87 default_client_route: '/videos/trending'
0883b324
C
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'
00b5556c
C
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
ac235c37
RK
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: /
8be1afa1
C
98
99services:
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