diff options
Diffstat (limited to 'config/default.yaml')
-rw-r--r-- | config/default.yaml | 33 |
1 files changed, 25 insertions, 8 deletions
diff --git a/config/default.yaml b/config/default.yaml index f6e944298..050019670 100644 --- a/config/default.yaml +++ b/config/default.yaml | |||
@@ -94,14 +94,6 @@ log: | |||
94 | maxFiles: 20 | 94 | maxFiles: 20 |
95 | anonymizeIP: false | 95 | anonymizeIP: false |
96 | 96 | ||
97 | search: | ||
98 | # Add ability to fetch remote videos/actors by their URI, that may not be federated with your instance | ||
99 | # If enabled, the associated group will be able to "escape" from the instance follows | ||
100 | # That means they will be able to follow channels, watch videos, list videos of non followed instances | ||
101 | remote_uri: | ||
102 | users: true | ||
103 | anonymous: false | ||
104 | |||
105 | trending: | 97 | trending: |
106 | videos: | 98 | videos: |
107 | interval_days: 7 # Compute trending videos for the last x days | 99 | interval_days: 7 # Compute trending videos for the last x days |
@@ -382,3 +374,28 @@ broadcast_message: | |||
382 | message: '' # Support markdown | 374 | message: '' # Support markdown |
383 | level: 'info' # 'info' | 'warning' | 'error' | 375 | level: 'info' # 'info' | 'warning' | 'error' |
384 | dismissable: false | 376 | dismissable: false |
377 | |||
378 | search: | ||
379 | # Add ability to fetch remote videos/actors by their URI, that may not be federated with your instance | ||
380 | # If enabled, the associated group will be able to "escape" from the instance follows | ||
381 | # That means they will be able to follow channels, watch videos, list videos of non followed instances | ||
382 | remote_uri: | ||
383 | users: true | ||
384 | anonymous: false | ||
385 | |||
386 | # Use a third party index instead of your local index, only for search results | ||
387 | # Useful to discover content outside of your instance | ||
388 | # If you enable search_index, you must enable remote_uri search for users | ||
389 | # If you do not enable remote_uri search for anonymous user, your instance will redirect the user on the origin instance | ||
390 | # instead of loading the video locally | ||
391 | search_index: | ||
392 | enabled: false | ||
393 | # URL of the search index, that should use the same search API and routes | ||
394 | # than PeerTube: https://docs.joinpeertube.org/api-rest-reference.html | ||
395 | # You should deploy your own with https://framagit.org/framasoft/peertube/search-index, | ||
396 | # and can use https://search.joinpeertube.org/ for tests, but keep in mind the latter is an unmoderated search index | ||
397 | url: '' | ||
398 | # You can disable local search, so users only use the search index | ||
399 | disable_local_search: false | ||
400 | # If you did not disable local search, you can decide to use the search index by default | ||
401 | is_default_search: false | ||