]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - config/production.yaml.example
Fix announce activities
[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 17
94a5ff8a
C
18redis:
19 hostname: 'localhost'
20 port: 6379
21 auth: null
22
552cc9d6
C
23# From the project root directory
24storage:
59c48d49
C
25 avatars: '/var/www/peertube/storage/avatars/'
26 videos: '/var/www/peertube/storage/videos/'
27 logs: '/var/www/peertube/storage/logs/'
28 previews: '/var/www/peertube/storage/previews/'
29 thumbnails: '/var/www/peertube/storage/thumbnails/'
30 torrents: '/var/www/peertube/storage/torrents/'
31 cache: '/var/www/peertube/storage/cache/'
4793c343 32
23e27dd5
C
33log:
34 level: 'debug' # debug/info/warning/error
35
62ccb24e
C
36cache:
37 previews:
d478d83d 38 size: 100 # Max number of previews you want to cache
62ccb24e 39
4793c343
C
40admin:
41 email: 'admin@example.com'
e22528ac
C
42
43signup:
44 enabled: false
62ccb24e 45 limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
227d02fe 46
b0f9f39e
C
47user:
48 # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).
49 # -1 == unlimited
50 video_quota: -1
51
227d02fe
C
52# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
53# Uses a lot of CPU!
54transcoding:
55 enabled: false
56 threads: 2
14d3270f
C
57 resolutions: # Only created if the original video has a higher resolution
58 240p: true
59 360p: true
60 480p: true
61 720p: true
62 1080p: true