Compare commits
9 Commits
3.3.0+v1.7
...
3.7.0+v1.8
| Author | SHA1 | Date | |
|---|---|---|---|
| c6f9b117e2 | |||
| ade6147f35 | |||
| 50e0aa06cc | |||
| f3732c8392 | |||
| e171ce052e | |||
| 5d5bd70818 | |||
| fd1a6c7a4a | |||
| 39a47a2515 | |||
| 6e556c8b2d |
@ -48,6 +48,9 @@ ENCRYPTED_BY_DEFAULT=all
|
||||
#ENABLE_ALLOWLIST=1
|
||||
#FEDERATION_ALLOWLIST="[]"
|
||||
|
||||
# Set these to keyservers you trust - usually the same as your federation allowlist
|
||||
#TRUSTED_KEYSERVERS="trusted_key_servers:\n - server_name: 'example.com'\n - server_name: 'example2.com'"
|
||||
|
||||
## Retention
|
||||
|
||||
ALLOWED_LIFETIME_MAX=4w
|
||||
|
||||
2
abra.sh
2
abra.sh
@ -1,6 +1,6 @@
|
||||
export DISCORD_BRIDGE_YAML_VERSION=v2
|
||||
export ENTRYPOINT_CONF_VERSION=v1
|
||||
export HOMESERVER_YAML_VERSION=v18
|
||||
export HOMESERVER_YAML_VERSION=v22
|
||||
export LOG_CONFIG_VERSION=v2
|
||||
export SHARED_SECRET_AUTH_VERSION=v1
|
||||
export SIGNAL_BRIDGE_YAML_VERSION=v4
|
||||
|
||||
@ -3,7 +3,7 @@ version: "3.8"
|
||||
|
||||
services:
|
||||
app:
|
||||
image: "matrixdotorg/synapse:v1.78.0"
|
||||
image: "matrixdotorg/synapse:v1.82.0"
|
||||
volumes:
|
||||
- "data:/data"
|
||||
depends_on:
|
||||
@ -61,7 +61,7 @@ services:
|
||||
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
|
||||
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
|
||||
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
||||
- "coop-cloud.${STACK_NAME}.version=3.3.0+v1.78.0"
|
||||
- "coop-cloud.${STACK_NAME}.version=3.7.0+v1.82.0"
|
||||
|
||||
db:
|
||||
image: postgres:13-alpine
|
||||
|
||||
@ -38,7 +38,7 @@ modules:
|
||||
# lowercase and may contain an explicit port.
|
||||
# Examples: matrix.org, localhost:8080
|
||||
#
|
||||
server_name: {{ env "DOMAIN" }}
|
||||
server_name: {{ or (env "SERVER_NAME") (env "DOMAIN") }}
|
||||
|
||||
# The public-facing base URL that clients use to access this Homeserver (not
|
||||
# including _matrix/...). This is the same URL a user might enter into the
|
||||
@ -427,8 +427,12 @@ signing_key_path: "/data/{{ env "DOMAIN" }}.signing.key"
|
||||
# "ed25519:auto": "abcdefghijklmnopqrstuvwxyzabcdefghijklmopqr"
|
||||
# - server_name: "my_other_trusted_server.example.com"
|
||||
#
|
||||
{{ if eq (env "ENABLE_ALLOWLIST") "1" }}
|
||||
{{ env "TRUSTED_KEYSERVERS" }}
|
||||
{{ else }}
|
||||
trusted_key_servers:
|
||||
- server_name: "matrix.org"
|
||||
{{ end }}
|
||||
|
||||
## Single sign-on integration ##
|
||||
|
||||
@ -685,7 +689,7 @@ email:
|
||||
# authentication is attempted.
|
||||
#
|
||||
smtp_user: {{ env "SMTP_USER" }}
|
||||
smtp_pass: {{ secret "smtp_password" }}
|
||||
smtp_pass: "{{ secret "smtp_password" }}"
|
||||
|
||||
# Uncomment the following to require TLS transport security for SMTP.
|
||||
# By default, Synapse will connect over plain text, and will then switch to
|
||||
|
||||
Reference in New Issue
Block a user