From ce7b94a1ac4f055ce36d71c74eb6e44930b8aa06 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Mon, 4 Nov 2024 22:44:10 +0000 Subject: [PATCH] s/matrix-authentication-service/mas/g' --- compose.yml | 2 +- data-template/nginx/conf.d/app.conf | 4 ++-- data-template/synapse/homeserver.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/compose.yml b/compose.yml index 548c162..708e16e 100644 --- a/compose.yml +++ b/compose.yml @@ -189,7 +189,7 @@ services: depends_on: - synapse - matrix-authentication-service: + mas: image: ghcr.io/element-hq/matrix-authentication-service:latest restart: unless-stopped # ports: diff --git a/data-template/nginx/conf.d/app.conf b/data-template/nginx/conf.d/app.conf index 6755563..c12cba7 100644 --- a/data-template/nginx/conf.d/app.conf +++ b/data-template/nginx/conf.d/app.conf @@ -47,7 +47,7 @@ server { include /etc/nginx/conf.d/include/ssl.conf; location / { - proxy_pass http://matrix-authentication-service:8080; + proxy_pass http://mas:8080; } } @@ -62,7 +62,7 @@ server { listen [::]:8448 ssl default_server; # pass auth to MAS - location ~ ^/_matrix/client/(.*)/(login|logout|refresh) { proxy_pass http://matrix-authentication-service:8080; } + location ~ ^/_matrix/client/(.*)/(login|logout|refresh) { proxy_pass http://mas:8080; } # use the generic worker as a synchrotron: # taken from https://element-hq.github.io/synapse/latest/workers.html#synapseappgeneric_worker diff --git a/data-template/synapse/homeserver.yaml b/data-template/synapse/homeserver.yaml index d182ce4..7dcced8 100644 --- a/data-template/synapse/homeserver.yaml +++ b/data-template/synapse/homeserver.yaml @@ -95,7 +95,7 @@ email: experimental_features: msc3861: # OIDC enabled: true - issuer: http://matrix-authentication-service:8080/ + issuer: http://mas:8080/ client_id: ${MAS_CLIENT_ID} client_auth_method: client_secret_basic client_secret: '${SECRETS_MAS_CLIENT_SECRET}'