diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-06-24 14:14:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-24 14:14:20 +0100 |
commit | cf7aef11145254ba3d008b39865146ee21da8ffc (patch) | |
tree | a43f34872f48cccbb10044b032cd36003cc85a3b /docs | |
parent | Pass config_dir_path and data_dir_path into Config.read_config. (#5522) (diff) | |
parent | changelog (diff) | |
download | synapse-cf7aef11145254ba3d008b39865146ee21da8ffc.tar.xz |
Merge pull request #5516 from matrix-org/rav/acme_key_path
Allow configuration of the path used for ACME account keys.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sample_config.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/sample_config.yaml b/docs/sample_config.yaml index d5cc3e7abc..bb07b02f4e 100644 --- a/docs/sample_config.yaml +++ b/docs/sample_config.yaml @@ -402,6 +402,13 @@ acme: # #domain: matrix.example.com + # file to use for the account key. This will be generated if it doesn't + # exist. + # + # If unspecified, we will use CONFDIR/client.key. + # + account_key_file: DATADIR/acme_account.key + # List of allowed TLS fingerprints for this server to publish along # with the signing keys for this server. Other matrix servers that # make HTTPS requests to this server will check that the TLS |