]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - config/test.yaml
Put config redundancy strategies in "strategies" subkey
[github/Chocobozzz/PeerTube.git] / config / test.yaml
... / ...
CommitLineData
1listen:
2 listen: '0.0.0.0'
3 port: 9000
4
5webserver:
6 https: false
7
8database:
9 hostname: 'localhost'
10 port: 5432
11
12smtp:
13 hostname: null
14 port: 1025
15 tls: false
16 disable_starttls: true
17 from_address: 'test-admin@localhost'
18 username: null
19 password: null
20
21log:
22 level: 'debug'
23
24redundancy:
25 videos:
26 strategies:
27 -
28 size: '10MB'
29 strategy: 'most-views'
30 -
31 size: '10MB'
32 strategy: 'trending'
33 -
34 size: '10MB'
35 strategy: 'recently-added'
36 minViews: 1
37
38cache:
39 previews:
40 size: 1
41 captions:
42 size: 1
43
44signup:
45 enabled: true
46 requires_email_verification: false
47
48transcoding:
49 enabled: true
50 threads: 2
51 resolutions:
52 240p: true
53 360p: true
54 480p: true
55 720p: true
56 1080p: true
57
58import:
59 videos:
60 http:
61 enabled: true
62 torrent:
63 enabled: true
64
65instance:
66 default_nsfw_policy: 'display'