Skip to content

Commit

Permalink
Do not generate /.well-known/matrix/support unless explicitly asked to
Browse files Browse the repository at this point in the history
Related to #1931
  • Loading branch information
spantaleev committed Jul 18, 2022
1 parent 3f7498d commit 78b5be4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/configuring-well-known.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ The two playbook variables that you could look for, if you're interested in bein

Example snippet for `vars.yml`:
```
# Enable generation of `/.well-known/matrix/support`.
# This needs to be enabled explicitly for now, because MSC 1929 is not yet accepted.
matrix_well_known_matrix_support_enabled: true
# Homeserver admin contacts as per MSC 1929 https://github.com/matrix-org/matrix-spec-proposals/pull/1929
matrix_homeserver_admin_contacts:
- matrix_id: "@admin1:{{ matrix_domain }}"
Expand Down
4 changes: 3 additions & 1 deletion roles/matrix-base/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,10 @@ matrix_well_known_matrix_server_enabled: true

# Controls whether a `/.well-known/matrix/support` file is generated and used at all.
#
# This is not enabled by default, until the MSC gets accepted: https://github.com/matrix-org/matrix-spec-proposals/pull/1929
#
# See `matrix_homeserver_admin_contacts`, `matrix_homeserver_support_url`, etc.
matrix_well_known_matrix_support_enabled: true
matrix_well_known_matrix_support_enabled: false

# Controls whether Docker is automatically installed.
# If you change this to false you must install and update Docker manually. You also need to install the docker (https://pypi.org/project/docker/) Python package.
Expand Down

0 comments on commit 78b5be4

Please sign in to comment.