From b6eb06ae1b8fdc8c78d14db9625c9cc5b3ff5cb9 Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Thu, 18 Dec 2025 16:48:38 +0100 Subject: [PATCH] Fix configuration names secret_path vs secret_file It's the other way round: Synapse requires `secret_path`, MAS requires `secret_file`. (I think it should be changed to `secret_file` for both, because it's a file not a directory or tree.) --- docs/setup/homeserver.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/setup/homeserver.md b/docs/setup/homeserver.md index ead3f8a17..066c92c7e 100644 --- a/docs/setup/homeserver.md +++ b/docs/setup/homeserver.md @@ -20,7 +20,7 @@ matrix: endpoint: "http://localhost:8008" secret: "AVeryRandomSecretPleaseUseSomethingSecure" # Alternatively, using a file: - #secret_path: /path/to/secret.txt + #secret_file: /path/to/secret.txt ``` ## Configure the homeserver to delegate authentication to the service @@ -33,7 +33,7 @@ matrix_authentication_service: endpoint: http://localhost:8080/ secret: "AVeryRandomSecretPleaseUseSomethingSecure" # Alternatively, using a file: - #secret_file: /path/to/secret.txt + #secret_path: /path/to/secret.txt ``` The `endpoint` property should be set to the URL of the authentication service.