Merge branch 'spantaleev:master' into 3031-feat-add-signalgo-bridge

This commit is contained in:
Pierre 'McFly' Marty 2023-12-18 16:39:34 +01:00 committed by GitHub
commit c9a1d79954
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 48 additions and 66 deletions

View File

@ -43,69 +43,47 @@ matrix_media_repo_database_max_connections: 25
matrix_media_repo_database_max_idle_connections: 5 matrix_media_repo_database_max_idle_connections: 5
# These users have full access to the administrative functions of the media repository. # These users have full access to the administrative functions of the media repository.
# See https://github.com/turt2live/matrix-media-repo/blob/release-v1.2.8/docs/admin.md for # See docs/admin.md for information on what these people can do. They must belong to one of the
# information on what these people can do. They must belong to one of the configured # configured homeservers above.
# homeservers above. # matrix_media_repo_admins: [
matrix_media_repo_admins: # "@your_username:example.org"
admins: [] # ]
# admins:
# - "@your_username:example.org"
# Datastores are places where media should be persisted. This isn't dedicated for just uploads: matrix_media_repo_admins: []
# thumbnails and other misc data is also stored in these places. The media repo, when looking
# for a datastore to use, will always use the smallest datastore first.
matrix_media_repo_datastores:
datastores:
- type: file
enabled: true # Enable this to set up data storage.
# Datastores can be split into many areas when handling uploads. Media is still de-duplicated
# across all datastores (local content which duplicates remote content will re-use the remote
# content's location). This option is useful if your datastore is becoming very large, or if
# you want faster storage for a particular kind of media.
#
# The kinds available are:
# thumbnails - Used to store thumbnails of media (local and remote).
# remote_media - Original copies of remote media (servers not configured by this repo).
# local_media - Original uploads for local media.
# archives - Archives of content (GDPR and similar requests).
forKinds: ["thumbnails", "remote_media", "local_media", "archives"]
opts:
path: /data/media
- type: s3 # Datastores can be split into many areas when handling uploads. Media is still de-duplicated
enabled: false # Enable this to set up s3 uploads # across all datastores (local content which duplicates remote content will re-use the remote
forKinds: ["thumbnails", "remote_media", "local_media", "archives"] # content's location). This option is useful if your datastore is becoming very large, or if
opts: # you want faster storage for a particular kind of media.
# The s3 uploader needs a temporary location to buffer files to reduce memory usage on #
# small file uploads. If the file size is unknown, the file is written to this location # To disable this datastore, making it readonly, specify `forKinds: []`.
# before being uploaded to s3 (then the file is deleted). If you aren't concerned about #
# memory usage, set this to an empty string. # The kinds available are:
tempPath: "/tmp/mediarepo_s3_upload" # thumbnails - Used to store thumbnails of media (local and remote).
endpoint: sfo2.digitaloceanspaces.com # remote_media - Original copies of remote media (servers not configured by this repo).
accessKeyId: "" # local_media - Original uploads for local media.
accessSecret: "" # archives - Archives of content (GDPR and similar requests).
ssl: true matrix_media_repo_datastore_file_for_kinds: ["thumbnails", "remote_media", "local_media", "archives"]
bucketName: "your-media-bucket" matrix_media_repo_datastore_s3_for_kinds: []
# An optional region for where this S3 endpoint is located. Typically not needed, though
# some providers will need this (like Scaleway). Uncomment to use.
#region: "sfo2"
# An optional storage class for tuning how the media is stored at s3.
# See https://aws.amazon.com/s3/storage-classes/ for details; uncomment to use.
#storageClass: STANDARD
# The media repo does support an IPFS datastore, but only if the IPFS feature is enabled. If # The s3 uploader needs a temporary location to buffer files to reduce memory usage on
# the feature is not enabled, this will not work. Note that IPFS support is experimental at # small file uploads. If the file size is unknown, the file is written to this location
# the moment and not recommended for general use. # before being uploaded to s3 (then the file is deleted). If you aren't concerned about
# # memory usage, set this to an empty string.
# NOTE: Everything you upload to IPFS will be publicly accessible, even when the media repo matrix_media_repo_datastore_s3_opts_temp_path: ""
# puts authentication on the download endpoints. Only use this option for cases where you matrix_media_repo_datastore_s3_opts_endpoint: "sfo2.digitaloceanspaces.com"
# expect your media to be publicly accessible. matrix_media_repo_datastore_s3_opts_access_key_id: ""
- type: ipfs matrix_media_repo_datastore_s3_opts_access_secret: ""
enabled: false # Enable this to use IPFS support matrix_media_repo_datastore_s3_opts_ssl: true
forKinds: ["local_media"] matrix_media_repo_datastore_s3_opts_bucket_name: "your-media-bucket"
# The IPFS datastore currently has no options. It will use the daemon or HTTP API configured
# in the IPFS section of your main config. # An optional region for where this S3 endpoint is located. Typically not needed, though
opts: {} # some providers will need this (like Scaleway). Uncomment to use.
# matrix_media_repo_datastore_s3_opts_region: "sfo2"
# An optional storage class for tuning how the media is stored at s3.
# See https://aws.amazon.com/s3/storage-classes/ for details; uncomment to use.
# matrix_media_repo_datastore_s3_opts_storage_class: "STANDARD"
``` ```

View File

@ -18,6 +18,8 @@ If your distro runs within an [LXC container](https://linuxcontainers.org/), you
- [Python](https://www.python.org/) being installed on the server. Most distributions install Python by default, but some don't (e.g. Ubuntu 18.04) and require manual installation (something like `apt-get install python3`). On some distros, Ansible may incorrectly [detect the Python version](https://docs.ansible.com/ansible/latest/reference_appendices/interpreter_discovery.html) (2 vs 3) and you may need to explicitly specify the interpreter path in `inventory/hosts` during installation (e.g. `ansible_python_interpreter=/usr/bin/python3`) - [Python](https://www.python.org/) being installed on the server. Most distributions install Python by default, but some don't (e.g. Ubuntu 18.04) and require manual installation (something like `apt-get install python3`). On some distros, Ansible may incorrectly [detect the Python version](https://docs.ansible.com/ansible/latest/reference_appendices/interpreter_discovery.html) (2 vs 3) and you may need to explicitly specify the interpreter path in `inventory/hosts` during installation (e.g. `ansible_python_interpreter=/usr/bin/python3`)
- [sudo](https://www.sudo.ws/) being installed on the server, even when you've configured Ansible to log in as `root`. Some distributions, like a minimal Debian net install, do not include the `sudo` package by default.
- The [Ansible](http://ansible.com/) program being installed on your own computer. It's used to run this playbook and configures your server for you. Take a look at [our guide about Ansible](ansible.md) for more information, as well as [version requirements](ansible.md#supported-ansible-versions) and alternative ways to run Ansible. - The [Ansible](http://ansible.com/) program being installed on your own computer. It's used to run this playbook and configures your server for you. Take a look at [our guide about Ansible](ansible.md) for more information, as well as [version requirements](ansible.md#supported-ansible-versions) and alternative ways to run Ansible.
- the [passlib](https://passlib.readthedocs.io/en/stable/index.html) Python library installed on the computer you run Ansible. On most distros, you need to install some `python-passlib` or `py3-passlib` package, etc. - the [passlib](https://passlib.readthedocs.io/en/stable/index.html) Python library installed on the computer you run Ansible. On most distros, you need to install some `python-passlib` or `py3-passlib` package, etc.

View File

@ -9,7 +9,7 @@ matrix_mautrix_gmessages_container_image_self_build_repo: "https://github.com/ma
matrix_mautrix_gmessages_container_image_self_build_branch: "{{ 'main' if matrix_mautrix_gmessages_version == 'latest' else matrix_mautrix_gmessages_version }}" matrix_mautrix_gmessages_container_image_self_build_branch: "{{ 'main' if matrix_mautrix_gmessages_version == 'latest' else matrix_mautrix_gmessages_version }}"
# renovate: datasource=docker depName=dock.mau.dev/mautrix/gmessages # renovate: datasource=docker depName=dock.mau.dev/mautrix/gmessages
matrix_mautrix_gmessages_version: v0.2.2 matrix_mautrix_gmessages_version: v0.2.3
# See: https://mau.dev/mautrix/gmessages/container_registry # See: https://mau.dev/mautrix/gmessages/container_registry
matrix_mautrix_gmessages_docker_image: "{{ matrix_mautrix_gmessages_docker_image_name_prefix }}mautrix/gmessages:{{ matrix_mautrix_gmessages_version }}" matrix_mautrix_gmessages_docker_image: "{{ matrix_mautrix_gmessages_docker_image_name_prefix }}mautrix/gmessages:{{ matrix_mautrix_gmessages_version }}"

View File

@ -9,7 +9,7 @@ matrix_mautrix_whatsapp_container_image_self_build_repo: "https://mau.dev/mautri
matrix_mautrix_whatsapp_container_image_self_build_branch: "{{ 'master' if matrix_mautrix_whatsapp_version == 'latest' else matrix_mautrix_whatsapp_version }}" matrix_mautrix_whatsapp_container_image_self_build_branch: "{{ 'master' if matrix_mautrix_whatsapp_version == 'latest' else matrix_mautrix_whatsapp_version }}"
# renovate: datasource=docker depName=dock.mau.dev/mautrix/whatsapp # renovate: datasource=docker depName=dock.mau.dev/mautrix/whatsapp
matrix_mautrix_whatsapp_version: v0.10.4 matrix_mautrix_whatsapp_version: v0.10.5
# See: https://mau.dev/mautrix/whatsapp/container_registry # See: https://mau.dev/mautrix/whatsapp/container_registry
matrix_mautrix_whatsapp_docker_image: "{{ matrix_mautrix_whatsapp_docker_image_name_prefix }}mautrix/whatsapp:{{ matrix_mautrix_whatsapp_version }}" matrix_mautrix_whatsapp_docker_image: "{{ matrix_mautrix_whatsapp_docker_image_name_prefix }}mautrix/whatsapp:{{ matrix_mautrix_whatsapp_version }}"

View File

@ -124,7 +124,7 @@ matrix_media_repo_federation_ignored_hosts: []
# Do NOT put your homeserver's existing database credentials here. Create a new database and # Do NOT put your homeserver's existing database credentials here. Create a new database and
# user instead. Using the same server is fine, just not the same username and database. # user instead. Using the same server is fine, just not the same username and database.
matrix_media_repo_database_username: "matrix_media_repo" matrix_media_repo_database_username: "matrix_media_repo"
matrix_media_repo_database_password: "your_password" matrix_media_repo_database_password: ""
matrix_media_repo_database_hostname: "{{ devture_postgres_identifier }}" matrix_media_repo_database_hostname: "{{ devture_postgres_identifier }}"
matrix_media_repo_database_port: 5432 matrix_media_repo_database_port: 5432
matrix_media_repo_database_name: "matrix_media_repo" matrix_media_repo_database_name: "matrix_media_repo"
@ -289,7 +289,7 @@ matrix_media_repo_datastore_s3_for_kinds: []
# small file uploads. If the file size is unknown, the file is written to this location # small file uploads. If the file size is unknown, the file is written to this location
# before being uploaded to s3 (then the file is deleted). If you aren't concerned about # before being uploaded to s3 (then the file is deleted). If you aren't concerned about
# memory usage, set this to an empty string. # memory usage, set this to an empty string.
matrix_media_repo_datastore_s3_opts_temp_path: "/tmp/mediarepo_s3_upload" matrix_media_repo_datastore_s3_opts_temp_path: ""
matrix_media_repo_datastore_s3_opts_endpoint: "sfo2.digitaloceanspaces.com" matrix_media_repo_datastore_s3_opts_endpoint: "sfo2.digitaloceanspaces.com"
matrix_media_repo_datastore_s3_opts_access_key_id: "" matrix_media_repo_datastore_s3_opts_access_key_id: ""
matrix_media_repo_datastore_s3_opts_access_secret: "" matrix_media_repo_datastore_s3_opts_access_secret: ""

View File

@ -785,6 +785,8 @@ matrix_synapse_sentry_dsn: ""
matrix_synapse_database_txn_limit: 0 matrix_synapse_database_txn_limit: 0
matrix_synapse_database_host: '' matrix_synapse_database_host: ''
matrix_synapse_database_port: 5432 matrix_synapse_database_port: 5432
matrix_synapse_database_cp_min: 5
matrix_synapse_database_cp_max: 10
matrix_synapse_database_user: "synapse" matrix_synapse_database_user: "synapse"
matrix_synapse_database_password: "" matrix_synapse_database_password: ""
matrix_synapse_database_database: "synapse" matrix_synapse_database_database: "synapse"

View File

@ -874,8 +874,8 @@ database:
database: "{{ matrix_synapse_database_database }}" database: "{{ matrix_synapse_database_database }}"
host: "{{ matrix_synapse_database_host }}" host: "{{ matrix_synapse_database_host }}"
port: {{ matrix_synapse_database_port }} port: {{ matrix_synapse_database_port }}
cp_min: 5 cp_min: {{ matrix_synapse_database_cp_min | to_json }}
cp_max: 10 cp_max: {{ matrix_synapse_database_cp_max | to_json }}
## Logging ## ## Logging ##