]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - config/default.yaml
typos (#246)
[github/Chocobozzz/PeerTube.git] / config / default.yaml
1 listen:
2 port: 9000
3
4 webserver:
5 https: false
6 hostname: 'localhost'
7 port: 9000
8
9 # Your database name will be "peertube"+database.suffix
10 database:
11 hostname: 'localhost'
12 port: 5432
13 suffix: '_dev'
14 username: 'peertube'
15 password: 'peertube'
16
17 # From the project root directory
18 storage:
19 avatars: 'storage/avatars/'
20 videos: 'storage/videos/'
21 logs: 'storage/logs/'
22 previews: 'storage/previews/'
23 thumbnails: 'storage/thumbnails/'
24 torrents: 'storage/torrents/'
25 cache: 'storage/cache/'
26
27 log:
28 level: 'debug' # debug/info/warning/error
29
30 cache:
31 previews:
32 size: 1 # Max number of previews you want to cache
33
34 admin:
35 email: 'admin@example.com'
36
37 signup:
38 enabled: false
39 limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
40
41 user:
42 # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).
43 # -1 == unlimited
44 video_quota: -1
45
46 # If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
47 # In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions.
48 # Uses a lot of CPU and increases storage!
49 transcoding:
50 enabled: false
51 threads: 2
52 resolutions: # Only created if the original video has a higher resolution
53 240p: true
54 360p: true
55 480p: true
56 720p: true
57 1080p: true