mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-06-25 18:57:50 +02:00
Setting up REUSE: add copyright statements to j2 and md files in roles/custom/
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
#jinja2: lstrip_blocks: "True"
|
||||
AWS_ACCESS_KEY={{ matrix_s3_media_store_aws_access_key }}
|
||||
AWS_SECRET_KEY={{ matrix_s3_media_store_aws_secret_key }}
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
#jinja2: lstrip_blocks: "True"
|
||||
[Unit]
|
||||
Description=Matrix Goofys media store
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
#jinja2: lstrip_blocks: "True"
|
||||
#!/bin/bash
|
||||
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
#jinja2: lstrip_blocks: "True"
|
||||
FROM {{ matrix_synapse_docker_image }}
|
||||
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
#jinja2: lstrip_blocks: "True"
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
#jinja2: lstrip_blocks: "True"
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
user: {{ matrix_synapse_database_user | to_json }}
|
||||
password: {{ matrix_synapse_database_password | to_json }}
|
||||
database: {{ matrix_synapse_database_database | to_json }}
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
{% if not matrix_synapse_ext_synapse_s3_storage_provider_config_ec2_instance_profile | bool %}
|
||||
AWS_ACCESS_KEY_ID={{ matrix_synapse_ext_synapse_s3_storage_provider_config_access_key_id }}
|
||||
AWS_SECRET_ACCESS_KEY={{ matrix_synapse_ext_synapse_s3_storage_provider_config_secret_access_key }}
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
module: s3_storage_provider.S3StorageProviderBackend
|
||||
store_local: {{ matrix_synapse_ext_synapse_s3_storage_provider_store_local | to_json }}
|
||||
store_remote: {{ matrix_synapse_ext_synapse_s3_storage_provider_store_remote | to_json }}
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
[Unit]
|
||||
Description=Migrates locally-stored Synapse media store files to S3
|
||||
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
[Unit]
|
||||
Description=Migrates locally-stored Synapse media store files to S3
|
||||
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
#jinja2: lstrip_blocks: "True"
|
||||
# Configuration file for Synapse.
|
||||
#
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
{% if matrix_synapse_container_labels_traefik_enabled %}
|
||||
traefik.enable=true
|
||||
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
global:
|
||||
scrape_interval: 5s
|
||||
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
#jinja2: lstrip_blocks: "True"
|
||||
|
||||
version: 1
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
#jinja2: lstrip_blocks: "True"
|
||||
[Unit]
|
||||
Description=Synapse worker ({{ matrix_synapse_worker_container_name }})
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
#jinja2: lstrip_blocks: "True"
|
||||
[Unit]
|
||||
Description=Synapse server
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
{% if matrix_synapse_worker_container_labels_traefik_enabled %}
|
||||
traefik.enable=true
|
||||
|
||||
|
@ -1,3 +1,9 @@
|
||||
{#
|
||||
SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
#jinja2: lstrip_blocks: "True"
|
||||
worker_app: synapse.app.{{ matrix_synapse_worker_details.app }}
|
||||
worker_name: {{ matrix_synapse_worker_details.name }}
|
||||
|
Reference in New Issue
Block a user