]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - config/production.yaml.example
Remove unused keys in configuration
[github/Chocobozzz/PeerTube.git] / config / production.yaml.example
CommitLineData
552cc9d6
C
1listen:
2 port: 9000
3
21511bba 4# Correspond to your reverse proxy "listen" configuration
f1f4732f 5webserver:
d478d83d 6 https: true
3737bbaf 7 hostname: 'example.com'
d478d83d 8 port: 443
825a5d9c 9
98dffd10 10# Your database name will be "peertube"+database.suffix
825a5d9c 11database:
552cc9d6
C
12 hostname: 'localhost'
13 port: 5432
feb4bdfd 14 suffix: '_prod'
6c05c149
C
15 username: 'peertube'
16 password: 'peertube'
552cc9d6
C
17
18# From the project root directory
19storage:
48be26e1
C
20 avatars: '/home/peertube/storage/avatars/'
21 videos: '/home/peertube/storage/videos/'
22 logs: '/home/peertube/storage/logs/'
23 previews: '/home/peertube/storage/previews/'
24 thumbnails: '/home/peertube/storage/thumbnails/'
25 torrents: '/home/peertube/storage/torrents/'
26 cache: '/home/peertube/storage/cache/'
4793c343 27
62ccb24e
C
28cache:
29 previews:
d478d83d 30 size: 100 # Max number of previews you want to cache
62ccb24e 31
4793c343
C
32admin:
33 email: 'admin@example.com'
e22528ac
C
34
35signup:
36 enabled: false
62ccb24e 37 limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
227d02fe 38
b0f9f39e
C
39user:
40 # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).
41 # -1 == unlimited
42 video_quota: -1
43
227d02fe
C
44# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
45# Uses a lot of CPU!
46transcoding:
47 enabled: false
48 threads: 2
14d3270f
C
49 resolutions: # Only created if the original video has a higher resolution
50 240p: true
51 360p: true
52 480p: true
53 720p: true
54 1080p: true