Rename a bunch of playbook variables for better consistency

This commit is contained in:
Slavi Pantaleev
2018-08-08 09:17:18 +03:00
parent 336785d1ed
commit 700602eed3
21 changed files with 63 additions and 47 deletions

View File

@ -257,7 +257,7 @@ media_store_path: "/matrix-storage/media-store"
uploads_path: "/matrix-run/uploads"
# The largest allowed upload size in bytes
max_upload_size: "{{ matrix_max_upload_size_mb }}M"
max_upload_size: "{{ matrix_synapse_max_upload_size_mb }}M"
# Maximum number of pixels that will be thumbnailed
max_image_pixels: "32M"

View File

@ -15,8 +15,8 @@ handlers:
class: logging.handlers.RotatingFileHandler
formatter: precise
filename: /matrix-run/homeserver.log
maxBytes: {{ matrix_max_log_file_size_mb * 1024 * 1024 }}
backupCount: {{ matrix_max_log_files_count }}
maxBytes: {{ matrix_synapse_max_log_file_size_mb * 1024 * 1024 }}
backupCount: {{ matrix_synapse_max_log_files_count }}
filters: [context]
console:
class: logging.StreamHandler