Compare commits
15 Commits
3.8.0+v1.8
...
4.0.0+v1.9
| Author | SHA1 | Date | |
|---|---|---|---|
| a3c9dfd65b | |||
| 6dacecbfac | |||
| 4770a03cb7 | |||
| 7ead29b750 | |||
| 3c772cc1e5 | |||
| e146435394 | |||
| 795c2eb685 | |||
| 7b1b5c37ed | |||
| 84204b03a7 | |||
| b57b73d5d6 | |||
| 66bd6be8fc | |||
| dda7f2a369 | |||
| d22a8257fb | |||
| 2445d9f33a | |||
| 2a45273541 |
@ -1,7 +1,10 @@
|
|||||||
TYPE=matrix-synapse
|
TYPE=matrix-synapse
|
||||||
DOMAIN=matrix.example.com
|
DOMAIN=matrix-synapse.example.com
|
||||||
|
#TIMEOUT=300
|
||||||
|
#ENABLE_AUTO_UPDATE=true
|
||||||
LETS_ENCRYPT_ENV=production
|
LETS_ENCRYPT_ENV=production
|
||||||
COMPOSE_FILE="compose.yml"
|
COMPOSE_FILE="compose.yml"
|
||||||
|
# POST_DEPLOY_CMDS="db set_admin"
|
||||||
|
|
||||||
## Admin details
|
## Admin details
|
||||||
|
|
||||||
@ -11,8 +14,8 @@ SYNAPSE_ADMIN_EMAIL=admin@example.com
|
|||||||
|
|
||||||
SECRET_DB_PASSWORD_VERSION=v1
|
SECRET_DB_PASSWORD_VERSION=v1
|
||||||
SECRET_FORM_SECRET_VERSION=v1
|
SECRET_FORM_SECRET_VERSION=v1
|
||||||
SECRET_MACAROON_SECRET_KEY_VERSION=v1
|
SECRET_MACAROON_VERSION=v1
|
||||||
SECRET_REGISTRATION_SHARED_SECRET_VERSION=v1
|
SECRET_REGISTRATION_VERSION=v1
|
||||||
|
|
||||||
## Federation
|
## Federation
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,10 @@
|
|||||||
|
|
||||||
## Tips & Tricks
|
## Tips & Tricks
|
||||||
|
|
||||||
|
### Set Admin User
|
||||||
|
|
||||||
|
`abra app cmd YOURAPPDOMAIN db set_admin <adminuser>`
|
||||||
|
|
||||||
### Disabling federation
|
### Disabling federation
|
||||||
|
|
||||||
- Use `DISABLE_FEDERATION=1` to turn off federation listeners
|
- Use `DISABLE_FEDERATION=1` to turn off federation listeners
|
||||||
|
|||||||
11
abra.sh
11
abra.sh
@ -1,7 +1,16 @@
|
|||||||
export DISCORD_BRIDGE_YAML_VERSION=v2
|
export DISCORD_BRIDGE_YAML_VERSION=v2
|
||||||
export ENTRYPOINT_CONF_VERSION=v1
|
export ENTRYPOINT_CONF_VERSION=v1
|
||||||
export HOMESERVER_YAML_VERSION=v22
|
export HOMESERVER_YAML_VERSION=v23
|
||||||
export LOG_CONFIG_VERSION=v2
|
export LOG_CONFIG_VERSION=v2
|
||||||
export SHARED_SECRET_AUTH_VERSION=v1
|
export SHARED_SECRET_AUTH_VERSION=v1
|
||||||
export SIGNAL_BRIDGE_YAML_VERSION=v4
|
export SIGNAL_BRIDGE_YAML_VERSION=v4
|
||||||
export TELEGRAM_BRIDGE_YAML_VERSION=v6
|
export TELEGRAM_BRIDGE_YAML_VERSION=v6
|
||||||
|
|
||||||
|
set_admin () {
|
||||||
|
admin=akadmin
|
||||||
|
if [ -n "$1" ]
|
||||||
|
then
|
||||||
|
admin=$1
|
||||||
|
fi
|
||||||
|
psql -U synapse -c "UPDATE users SET admin = 1 WHERE name = '@$admin:$DOMAIN'";
|
||||||
|
}
|
||||||
|
|||||||
@ -6,8 +6,10 @@ services:
|
|||||||
secrets:
|
secrets:
|
||||||
- keycloak2_client_secret
|
- keycloak2_client_secret
|
||||||
environment:
|
environment:
|
||||||
|
- KEYCLOAK2_ALLOW_EXISTING_USERS
|
||||||
- KEYCLOAK2_CLIENT_ID
|
- KEYCLOAK2_CLIENT_ID
|
||||||
- KEYCLOAK2_ENABLED
|
- KEYCLOAK2_ENABLED
|
||||||
|
- KEYCLOAK2_ID
|
||||||
- KEYCLOAK2_NAME
|
- KEYCLOAK2_NAME
|
||||||
- KEYCLOAK2_URL
|
- KEYCLOAK2_URL
|
||||||
|
|
||||||
|
|||||||
@ -10,7 +10,7 @@ services:
|
|||||||
- telegram-data:/telegram-data
|
- telegram-data:/telegram-data
|
||||||
|
|
||||||
telegrambridge:
|
telegrambridge:
|
||||||
image: dock.mau.dev/mautrix/telegram:v0.14.0
|
image: dock.mau.dev/mautrix/telegram:v0.14.2
|
||||||
depends_on:
|
depends_on:
|
||||||
- telegramdb
|
- telegramdb
|
||||||
configs:
|
configs:
|
||||||
|
|||||||
24
compose.yml
24
compose.yml
@ -3,7 +3,7 @@ version: "3.8"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
image: "matrixdotorg/synapse:v1.84.1"
|
image: "matrixdotorg/synapse:v1.93.0"
|
||||||
volumes:
|
volumes:
|
||||||
- "data:/data"
|
- "data:/data"
|
||||||
depends_on:
|
depends_on:
|
||||||
@ -61,7 +61,14 @@ services:
|
|||||||
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
|
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
|
||||||
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
|
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
|
||||||
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
||||||
- "coop-cloud.${STACK_NAME}.version=3.8.0+v1.84.1"
|
- "coop-cloud.${STACK_NAME}.version=4.0.0+v1.93.0"
|
||||||
|
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "curl", "-f", "http://localhost:8008/health"]
|
||||||
|
interval: 30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 10
|
||||||
|
start_period: 1m
|
||||||
|
|
||||||
db:
|
db:
|
||||||
image: postgres:13-alpine
|
image: postgres:13-alpine
|
||||||
@ -74,10 +81,15 @@ services:
|
|||||||
- POSTGRES_INITDB_ARGS="-E \"UTF8\""
|
- POSTGRES_INITDB_ARGS="-E \"UTF8\""
|
||||||
- POSTGRES_PASSWORD_FILE=/run/secrets/db_password
|
- POSTGRES_PASSWORD_FILE=/run/secrets/db_password
|
||||||
- POSTGRES_USER=synapse
|
- POSTGRES_USER=synapse
|
||||||
|
- DOMAIN
|
||||||
networks:
|
networks:
|
||||||
- internal
|
- internal
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "pg_isready", "-U", "$POSTGRES_USER" ]
|
test: ["CMD", "pg_isready", "-U", "synapse"]
|
||||||
|
interval: 30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 10
|
||||||
|
start_period: 1m
|
||||||
volumes:
|
volumes:
|
||||||
- postgres:/var/lib/postgresql/data
|
- postgres:/var/lib/postgresql/data
|
||||||
deploy:
|
deploy:
|
||||||
@ -116,10 +128,10 @@ secrets:
|
|||||||
name: ${STACK_NAME}_db_password_${SECRET_DB_PASSWORD_VERSION}
|
name: ${STACK_NAME}_db_password_${SECRET_DB_PASSWORD_VERSION}
|
||||||
registration_shared_secret:
|
registration_shared_secret:
|
||||||
external: true
|
external: true
|
||||||
name: ${STACK_NAME}_db_password_${SECRET_REGISTRATION_SHARED_SECRET_VERSION}
|
name: ${STACK_NAME}_registration_${SECRET_REGISTRATION_VERSION}
|
||||||
macaroon_secret_key:
|
macaroon_secret_key:
|
||||||
external: true
|
external: true
|
||||||
name: ${STACK_NAME}_db_password_${SECRET_MACAROON_SECRET_KEY_VERSION}
|
name: ${STACK_NAME}_macaroon_${SECRET_MACAROON_VERSION}
|
||||||
form_secret:
|
form_secret:
|
||||||
external: true
|
external: true
|
||||||
name: ${STACK_NAME}_db_password_${SECRET_FORM_SECRET_VERSION}
|
name: ${STACK_NAME}_form_secret_${SECRET_FORM_SECRET_VERSION}
|
||||||
|
|||||||
@ -609,12 +609,13 @@ oidc_providers:
|
|||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ if eq (env "KEYCLOAK2_ENABLED") "1" }}
|
{{ if eq (env "KEYCLOAK2_ENABLED") "1" }}
|
||||||
- idp_id: keycloak2
|
- idp_id: {{ env "KEYCLOAK2_ID" }}
|
||||||
idp_name: {{ env "KEYCLOAK2_NAME" }}
|
idp_name: {{ env "KEYCLOAK2_NAME" }}
|
||||||
issuer: "{{ env "KEYCLOAK2_URL" }}"
|
issuer: "{{ env "KEYCLOAK2_URL" }}"
|
||||||
client_id: "{{ env "KEYCLOAK2_CLIENT_ID" }}"
|
client_id: "{{ env "KEYCLOAK2_CLIENT_ID" }}"
|
||||||
client_secret: "{{ secret "keycloak2_client_secret" }}"
|
client_secret: "{{ secret "keycloak2_client_secret" }}"
|
||||||
scopes: ["openid", "profile"]
|
scopes: ["openid", "profile"]
|
||||||
|
allow_existing_users: {{ env "KEYCLOAK2_ALLOW_EXISTING_USERS" }}
|
||||||
user_mapping_provider:
|
user_mapping_provider:
|
||||||
config:
|
config:
|
||||||
localpart_template: "{{ "{{ user.preferred_username }}" }}"
|
localpart_template: "{{ "{{ user.preferred_username }}" }}"
|
||||||
@ -622,12 +623,13 @@ oidc_providers:
|
|||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ if eq (env "KEYCLOAK3_ENABLED") "1" }}
|
{{ if eq (env "KEYCLOAK3_ENABLED") "1" }}
|
||||||
- idp_id: keycloak3
|
- idp_id: {{ env "KEYCLOAK3_ID" }}
|
||||||
idp_name: {{ env "KEYCLOAK3_NAME" }}
|
idp_name: {{ env "KEYCLOAK3_NAME" }}
|
||||||
issuer: "{{ env "KEYCLOAK3_URL" }}"
|
issuer: "{{ env "KEYCLOAK3_URL" }}"
|
||||||
client_id: "{{ env "KEYCLOAK3_CLIENT_ID" }}"
|
client_id: "{{ env "KEYCLOAK3_CLIENT_ID" }}"
|
||||||
client_secret: "{{ secret "keycloak3_client_secret" }}"
|
client_secret: "{{ secret "keycloak3_client_secret" }}"
|
||||||
scopes: ["openid", "profile"]
|
scopes: ["openid", "profile"]
|
||||||
|
allow_existing_users: {{ env "KEYCLOAK3_ALLOW_EXISTING_USERS" }}
|
||||||
user_mapping_provider:
|
user_mapping_provider:
|
||||||
config:
|
config:
|
||||||
localpart_template: "{{ "{{ user.preferred_username }}" }}"
|
localpart_template: "{{ "{{ user.preferred_username }}" }}"
|
||||||
|
|||||||
8
release/4.0.0+v1.93.0
Normal file
8
release/4.0.0+v1.93.0
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
We had to rename some secrets: https://git.coopcloud.tech/coop-cloud/matrix-synapse/issues/35
|
||||||
|
|
||||||
|
Copy the secrets:
|
||||||
|
|
||||||
|
* `registration_shared_secret` to `registration`
|
||||||
|
* `macaroon_secret_key` to `macaroon`
|
||||||
|
|
||||||
|
Regeneration of these secrets should also work.
|
||||||
Reference in New Issue
Block a user