mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-04-25 18:07:33 +00:00
Reformat `{{ { ... }[engine] }}` dict-in-Jinja-expressions across
bot/bridge role defaults for consistent indentation (tabs -> spaces).
Also: fix a missing space in a Jinja `+` expression in matrix-static-files,
and fix indentation in the caddy2-in-container example.
The original PR also renamed `galaxy/<role>` role references to just
`<role>` in setup.yml and jitsi_jvb.yml; those were dropped here because
Ansible does not recurse into subdirectories of `roles/` by default and
no `roles_path` is configured in ansible.cfg, so the rename would break
role resolution.
Co-Authored-By: Slavi Pantaleev <slavi@devture.com>
29 lines
582 B
YAML
29 lines
582 B
YAML
# SPDX-FileCopyrightText: 2024 MDAD project contributors
|
|
# SPDX-FileCopyrightText: 2024 Suguru Hirahara
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
version: "3.9"
|
|
|
|
services:
|
|
caddy:
|
|
image: caddy:2.5.1-alpine
|
|
networks:
|
|
# add this, so that caddy can talk to the playbook-managed-traefik
|
|
- traefik
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
- "8448:8448"
|
|
volumes:
|
|
- ./Caddyfile:/etc/caddy/Caddyfile
|
|
# - ./site:/var/www
|
|
# Other configurations …
|
|
|
|
networks:
|
|
# add this as well
|
|
traefik:
|
|
name: traefik
|
|
external: true
|