]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - config/default.yaml
Bumped to version v1.0.0-alpha.6
[github/Chocobozzz/PeerTube.git] / config / default.yaml
CommitLineData
8c308c2b
C
1listen:
2 port: 9000
3
4webserver:
5 https: false
3737bbaf 6 hostname: 'localhost'
8c308c2b
C
7 port: 9000
8
98dffd10 9# Your database name will be "peertube"+database.suffix
8c308c2b 10database:
3737bbaf 11 hostname: 'localhost'
feb4bdfd
C
12 port: 5432
13 suffix: '_dev'
55fa55a9
C
14 username: 'peertube'
15 password: 'peertube'
8c308c2b 16
94a5ff8a
C
17redis:
18 hostname: 'localhost'
19 port: 6379
20 auth: null
21
ecb4e35f
C
22smtp:
23 hostname: null
24 port: 465
25 username: null
26 password: null
27 tls: true
28 ca_file: null # Used for self signed certificates
29 from_address: 'admin@example.com'
30
8c308c2b
C
31# From the project root directory
32storage:
6b2ef589 33 avatars: 'storage/avatars/'
6b2ef589
C
34 videos: 'storage/videos/'
35 logs: 'storage/logs/'
36 previews: 'storage/previews/'
37 thumbnails: 'storage/thumbnails/'
38 torrents: 'storage/torrents/'
39 cache: 'storage/cache/'
f981dae8 40
23e27dd5 41log:
a0922eb9 42 level: 'info' # debug/info/warning/error
23e27dd5 43
f981dae8
C
44cache:
45 previews:
46 size: 1 # Max number of previews you want to cache
4793c343
C
47
48admin:
ecb4e35f 49 email: 'admin@example.com' # Your personal email as administrator
e22528ac
C
50
51signup:
52 enabled: false
291e8d3e 53 limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
227d02fe 54
b0f9f39e
C
55user:
56 # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).
57 # -1 == unlimited
58 video_quota: -1
59
227d02fe 60# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
40298b02
C
61# In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions.
62# Uses a lot of CPU and increases storage!
227d02fe 63transcoding:
1125c40a 64 enabled: true
98f535a5 65 threads: 1
40298b02 66 resolutions: # Only created if the original video has a higher resolution
1125c40a
C
67 240p: false
68 360p: false
69 480p: false
70 720p: false
71 1080p: false
66b16caf
C
72
73instance:
74 name: 'PeerTube'
bf874e33
C
75 description: 'Welcome to this PeerTube instance!' # Support markdown
76 terms: 'No terms for now.' # Support markdown
901637bb 77 default_client_route: '/videos/trending'
00b5556c
C
78 customizations:
79 javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
80 css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime