diff options
author | DMRobertson <DMRobertson@users.noreply.github.com> | 2021-09-21 13:05:07 +0000 |
---|---|---|
committer | DMRobertson <DMRobertson@users.noreply.github.com> | 2021-09-21 13:05:07 +0000 |
commit | 7a927aac59bad94111ef585dc9770bfc92280e6d (patch) | |
tree | 5d2dcec00129b9b28f7f56bdd45130cfd5c12925 /latest/sample_config.yaml | |
parent | deploy: 60453315bdbbbd364f13ca386de965e015f1062f (diff) | |
download | synapse-7a927aac59bad94111ef585dc9770bfc92280e6d.tar.xz |
deploy: 9ffa787eb243c98a6ca1ecd9eac4a6b5dac2bef0
Diffstat (limited to 'latest/sample_config.yaml')
-rw-r--r-- | latest/sample_config.yaml | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/latest/sample_config.yaml b/latest/sample_config.yaml index 935841dbfa..95cca16552 100644 --- a/latest/sample_config.yaml +++ b/latest/sample_config.yaml @@ -335,6 +335,24 @@ listeners: # bind_addresses: ['::1', '127.0.0.1'] # type: manhole +# Connection settings for the manhole +# +manhole_settings: + # The username for the manhole. This defaults to 'matrix'. + # + #username: manhole + + # The password for the manhole. This defaults to 'rabbithole'. + # + #password: mypassword + + # The private and public SSH key pair used to encrypt the manhole traffic. + # If these are left unset, then hardcoded and non-secret keys are used, + # which could allow traffic to be intercepted if sent over a public network. + # + #ssh_priv_key_path: CONFDIR/id_rsa + #ssh_pub_key_path: CONFDIR/id_rsa.pub + # Forward extremities can build up in a room due to networking delays between # homeservers. Once this happens in a large room, calculation of the state of # that room can become quite expensive. To mitigate this, once the number of @@ -1075,6 +1093,27 @@ url_preview_accept_language: # - en +# oEmbed allows for easier embedding content from a website. It can be +# used for generating URLs previews of services which support it. +# +oembed: + # A default list of oEmbed providers is included with Synapse. + # + # Uncomment the following to disable using these default oEmbed URLs. + # Defaults to 'false'. + # + #disable_default_providers: true + + # Additional files with oEmbed configuration (each should be in the + # form of providers.json). + # + # By default, this list is empty (so only the default providers.json + # is used). + # + #additional_providers: + # - oembed/my_providers.json + + ## Captcha ## # See docs/CAPTCHA_SETUP.md for full details of configuring this. @@ -2047,7 +2086,7 @@ password_config: # #require_lowercase: true - # Whether a password must contain at least one lowercase letter. + # Whether a password must contain at least one uppercase letter. # Defaults to 'false'. # #require_uppercase: true |