mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-12-27 06:50:20 +00:00
added dynamic thumbnails var
This commit is contained in:
parent
cf7f9701b7
commit
40f067148d
@ -211,3 +211,7 @@ matrix_dendrite_userapi_auto_join_rooms: []
|
|||||||
# statistics reporting configuration. These statistics contain the server
|
# statistics reporting configuration. These statistics contain the server
|
||||||
# name, number of active users and some information on your deployment config.
|
# name, number of active users and some information on your deployment config.
|
||||||
matrix_dendrite_report_stats: false
|
matrix_dendrite_report_stats: false
|
||||||
|
|
||||||
|
# dynamically generate thumbnails for media content
|
||||||
|
matrix_dendrite_mediaapi_dynamic_thumbnails: false
|
||||||
|
matrix_dendrite_mediaapi_max_thumbnail_generators: 10
|
||||||
|
@ -293,10 +293,10 @@ media_api:
|
|||||||
max_file_size_bytes: {{ matrix_dendrite_max_file_size_bytes|to_json }}
|
max_file_size_bytes: {{ matrix_dendrite_max_file_size_bytes|to_json }}
|
||||||
|
|
||||||
# Whether to dynamically generate thumbnails if needed.
|
# Whether to dynamically generate thumbnails if needed.
|
||||||
dynamic_thumbnails: false
|
dynamic_thumbnails: {{ matrix_dendrite_mediaapi_dynamic_thumbnails }}
|
||||||
|
|
||||||
# The maximum number of simultaneous thumbnail generators to run.
|
# The maximum number of simultaneous thumbnail generators to run.
|
||||||
max_thumbnail_generators: 10
|
max_thumbnail_generators: {{ matrix_dendrite_mediaapi_max_thumbnails_generators }}
|
||||||
|
|
||||||
# A list of thumbnail sizes to be generated for media content.
|
# A list of thumbnail sizes to be generated for media content.
|
||||||
thumbnail_sizes:
|
thumbnail_sizes:
|
||||||
|
Loading…
Reference in New Issue
Block a user