Просмотр исходного кода

Setting up REUSE: add copyright statements to files in examples/

Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
pull/3859/head
Suguru Hirahara 1 год назад
Родитель
Сommit
3a1ea53739
Не найден GPG ключ соответствующий данной подписи Идентификатор GPG ключа: E4F9743DAB4B7B75
17 измененных файлов: 82 добавлений и 0 удалений
  1. +4
    -0
      examples/host.yml
  2. +4
    -0
      examples/hosts
  3. +6
    -0
      examples/reverse-proxies/README.md
  4. +6
    -0
      examples/reverse-proxies/apache/README.md
  5. +4
    -0
      examples/reverse-proxies/apache/matrix-client-element.conf
  6. +4
    -0
      examples/reverse-proxies/apache/matrix-domain.conf
  7. +4
    -0
      examples/reverse-proxies/caddy2-in-container/Caddyfile
  8. +6
    -0
      examples/reverse-proxies/caddy2-in-container/README.md
  9. +4
    -0
      examples/reverse-proxies/caddy2-in-container/docker-compose.yaml
  10. +4
    -0
      examples/reverse-proxies/caddy2/Caddyfile
  11. +6
    -0
      examples/reverse-proxies/caddy2/README.md
  12. +6
    -0
      examples/reverse-proxies/haproxy/README.md
  13. +4
    -0
      examples/reverse-proxies/haproxy/haproxy.cfg
  14. +6
    -0
      examples/reverse-proxies/nginx-proxy-manager/README.md
  15. +6
    -0
      examples/reverse-proxies/nginx/README.md
  16. +4
    -0
      examples/reverse-proxies/nginx/matrix.conf
  17. +4
    -0
      examples/vars.yml

+ 4
- 0
examples/host.yml Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

--- ---


# This is a host file for usage with the `../bin/ansible-all-hosts.sh` script, # This is a host file for usage with the `../bin/ansible-all-hosts.sh` script,


+ 4
- 0
examples/hosts Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

# We explicitly ask for your server's external IP address, because the same value is used for configuring Coturn. # We explicitly ask for your server's external IP address, because the same value is used for configuring Coturn.
# If you'd rather use a local IP here, make sure to set up `matrix_coturn_turn_external_ip_address`. # If you'd rather use a local IP here, make sure to set up `matrix_coturn_turn_external_ip_address`.
# #


+ 6
- 0
examples/reverse-proxies/README.md Просмотреть файл

@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2024 MDAD Team and contributors

SPDX-License-Identifier: AGPL-3.0-or-later
-->

## Using other reverse-proxies for fronting the integrated Traefik reverse-proxy ## Using other reverse-proxies for fronting the integrated Traefik reverse-proxy


This directory contains sample configuration for various webservers, showing you how to put these reverse-proxies in front of the integrated Traefik reverse-proxy used by the playbook. This directory contains sample configuration for various webservers, showing you how to put these reverse-proxies in front of the integrated Traefik reverse-proxy used by the playbook.


+ 6
- 0
examples/reverse-proxies/apache/README.md Просмотреть файл

@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2024 MDAD Team and contributors

SPDX-License-Identifier: AGPL-3.0-or-later
-->

# Apache reverse-proxy # Apache reverse-proxy


This directory contains sample files that show you how to front the integrated [Traefik](https://traefik.io/) reverse-proxy webserver with your Apache reverse-proxy. This directory contains sample files that show you how to front the integrated [Traefik](https://traefik.io/) reverse-proxy webserver with your Apache reverse-proxy.


+ 4
- 0
examples/reverse-proxies/apache/matrix-client-element.conf Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

# This is a sample file demonstrating how to set up reverse-proxy for element.example.com. # This is a sample file demonstrating how to set up reverse-proxy for element.example.com.
# If you're not using Element Web (`matrix_client_element_enabled: false`), you won't need this. # If you're not using Element Web (`matrix_client_element_enabled: false`), you won't need this.




+ 4
- 0
examples/reverse-proxies/apache/matrix-domain.conf Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

# This is a sample file demonstrating how to set up reverse-proxy for matrix.example.com # This is a sample file demonstrating how to set up reverse-proxy for matrix.example.com


<VirtualHost *:80> <VirtualHost *:80>


+ 4
- 0
examples/reverse-proxies/caddy2-in-container/Caddyfile Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

matrix.example.com { matrix.example.com {


handle { handle {


+ 6
- 0
examples/reverse-proxies/caddy2-in-container/README.md Просмотреть файл

@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2024 MDAD Team and contributors

SPDX-License-Identifier: AGPL-3.0-or-later
-->

# Caddy reverse-proxy fronting the playbook's integrated Traefik reverse-proxy # Caddy reverse-proxy fronting the playbook's integrated Traefik reverse-proxy


This directory contains a sample config that shows you how to front the integrated [Traefik](https://traefik.io/) reverse-proxy webserver with your own **containerized** [Caddy](https://caddyserver.com/) reverse-proxy. If you have a server with a Caddy container already serving several applications and you want to install Matrix on it (with no changes to existing traffic routing), then this guide is for you. This directory contains a sample config that shows you how to front the integrated [Traefik](https://traefik.io/) reverse-proxy webserver with your own **containerized** [Caddy](https://caddyserver.com/) reverse-proxy. If you have a server with a Caddy container already serving several applications and you want to install Matrix on it (with no changes to existing traffic routing), then this guide is for you.


+ 4
- 0
examples/reverse-proxies/caddy2-in-container/docker-compose.yaml Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

--- ---
version: "3.9" version: "3.9"




+ 4
- 0
examples/reverse-proxies/caddy2/Caddyfile Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

matrix.example.com { matrix.example.com {


handle { handle {


+ 6
- 0
examples/reverse-proxies/caddy2/README.md Просмотреть файл

@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2024 MDAD Team and contributors

SPDX-License-Identifier: AGPL-3.0-or-later
-->

# Caddy reverse-proxy fronting the playbook's integrated Traefik reverse-proxy # Caddy reverse-proxy fronting the playbook's integrated Traefik reverse-proxy


This directory contains a sample config that shows you how to front the integrated [Traefik](https://traefik.io/) reverse-proxy webserver with your own [Caddy](https://caddyserver.com/) reverse-proxy. This directory contains a sample config that shows you how to front the integrated [Traefik](https://traefik.io/) reverse-proxy webserver with your own [Caddy](https://caddyserver.com/) reverse-proxy.


+ 6
- 0
examples/reverse-proxies/haproxy/README.md Просмотреть файл

@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2024 MDAD Team and contributors

SPDX-License-Identifier: AGPL-3.0-or-later
-->

# HAproxy reverse-proxy # HAproxy reverse-proxy


This directory contains sample files that show you how to do reverse-proxying using HAproxy. This directory contains sample files that show you how to do reverse-proxying using HAproxy.


+ 4
- 0
examples/reverse-proxies/haproxy/haproxy.cfg Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

global global
log /dev/log local0 log /dev/log local0
log /dev/log local1 notice log /dev/log local1 notice


+ 6
- 0
examples/reverse-proxies/nginx-proxy-manager/README.md Просмотреть файл

@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2024 MDAD Team and contributors

SPDX-License-Identifier: AGPL-3.0-or-later
-->

# Nginx Proxy Manager fronting the playbook's integrated Traefik reverse-proxy # Nginx Proxy Manager fronting the playbook's integrated Traefik reverse-proxy


Similar to standard nginx, [Nginx Proxy Manager](https://nginxproxymanager.com/) provides nginx capabilities but inside a pre-built Docker container. With the ability for managing proxy hosts and automatic SSL certificates via a simple web interface. Similar to standard nginx, [Nginx Proxy Manager](https://nginxproxymanager.com/) provides nginx capabilities but inside a pre-built Docker container. With the ability for managing proxy hosts and automatic SSL certificates via a simple web interface.


+ 6
- 0
examples/reverse-proxies/nginx/README.md Просмотреть файл

@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2024 MDAD Team and contributors

SPDX-License-Identifier: AGPL-3.0-or-later
-->

# Nginx reverse-proxy fronting the playbook's integrated Traefik reverse-proxy # Nginx reverse-proxy fronting the playbook's integrated Traefik reverse-proxy


This directory contains a sample config that shows you how to use the [nginx](https://nginx.org/) webserver to front the integrated [Traefik](https://traefik.io/) reverse-proxy webserver with another reverse-proxy. This directory contains a sample config that shows you how to use the [nginx](https://nginx.org/) webserver to front the integrated [Traefik](https://traefik.io/) reverse-proxy webserver with another reverse-proxy.


+ 4
- 0
examples/reverse-proxies/nginx/matrix.conf Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

server { server {
# TODO: once per IP and port you should add `reuseport`, if you don't have that in any other nginx config file, add it here by uncommenting the lines below and commenting the one after with `quic` but without `reuseport` # TODO: once per IP and port you should add `reuseport`, if you don't have that in any other nginx config file, add it here by uncommenting the lines below and commenting the one after with `quic` but without `reuseport`
#listen 443 quic reuseport; #listen 443 quic reuseport;


+ 4
- 0
examples/vars.yml Просмотреть файл

@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later

--- ---
# The bare domain name which represents your Matrix identity. # The bare domain name which represents your Matrix identity.
# Matrix user IDs for your server will be of the form (`@user:example.com`). # Matrix user IDs for your server will be of the form (`@user:example.com`).


Загрузка…
Отмена
Сохранить