]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - config/test.yaml
Fix home routing
[github/Chocobozzz/PeerTube.git] / config / test.yaml
1 listen:
2 hostname: '0.0.0.0'
3 port: 9000
4
5 webserver:
6 https: false
7
8 rates_limit:
9 signup:
10 window: 10 minutes
11 max: 50
12 login:
13 window: 5 minutes
14 max: 20
15 api:
16 window: 10 seconds
17 max: 500
18
19 database:
20 hostname: 'localhost'
21 port: 5432
22
23 redis:
24 hostname: 'localhost'
25
26 smtp:
27 hostname: null
28 port: 1025
29 tls: false
30 disable_starttls: true
31 from_address: 'test-admin@localhost'
32 username: null
33 password: null
34
35 log:
36 level: 'debug'
37
38 contact_form:
39 enabled: true
40
41 peertube:
42 check_latest_version:
43 enabled: false
44
45 redundancy:
46 videos:
47 check_interval: '1 minute'
48 strategies:
49 -
50 size: '1000MB'
51 min_lifetime: '10 minutes'
52 strategy: 'most-views'
53 -
54 size: '1000MB'
55 min_lifetime: '10 minutes'
56 strategy: 'trending'
57 -
58 size: '1000MB'
59 min_lifetime: '10 minutes'
60 strategy: 'recently-added'
61 min_views: 1
62
63 cache:
64 previews:
65 size: 1
66 captions:
67 size: 1
68 torrents:
69 size: 1
70
71 signup:
72 enabled: true
73 requires_email_verification: false
74
75 transcoding:
76 enabled: true
77 allow_additional_extensions: false
78 allow_audio_files: false
79 threads: 2
80 concurrency: 2
81 resolutions:
82 0p: false
83 240p: true
84 360p: true
85 480p: true
86 720p: true
87 1080p: true
88 1440p: true
89 2160p: true
90 webtorrent:
91 enabled: true
92 hls:
93 enabled: true
94
95 live:
96 enabled: false
97
98 allow_replay: false
99
100 rtmp:
101 port: 1935
102
103 transcoding:
104 enabled: false
105 threads: 2
106
107 resolutions:
108 240p: false
109 360p: false
110 480p: false
111 720p: false
112 1080p: false
113 1440p: false
114 2160p: false
115
116 import:
117 videos:
118 concurrency: 2
119 http:
120 enabled: true
121 proxy:
122 enabled: false
123 url: ""
124 torrent:
125 enabled: true
126
127 instance:
128 default_nsfw_policy: 'display'
129
130 plugins:
131 index:
132 check_latest_versions_interval: '10 minutes'
133
134 search:
135 # Add ability to fetch remote videos/actors by their URI, that may not be federated with your instance
136 # If enabled, the associated group will be able to "escape" from the instance follows
137 # That means they will be able to follow channels, watch videos, list videos of non followed instances
138 remote_uri:
139 users: true
140 anonymous: false
141
142 # Use a third party index instead of your local index, only for search results
143 # Useful to discover content outside of your instance
144 search_index:
145 enabled: false
146 # URL of the search index, that should use the same search API and routes
147 # than PeerTube: https://docs.joinpeertube.org/api-rest-reference.html
148 # You should deploy your own with https://framagit.org/framasoft/peertube/search-index,
149 # and can use https://search.joinpeertube.org/ for tests, but keep in mind the latter is an unmoderated search index
150 url: 'http://localhost:3234'
151 # You can disable local search, so users only use the search index
152 disable_local_search: false
153 # If you did not disable local search, you can decide to use the search index by default
154 is_default_search: true
155
156 federation:
157 videos:
158 federate_unlisted: true
159
160 views:
161 videos:
162 remote:
163 max_age: -1