add server-side support for /.well-known/matrix/support
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
c946352e7f
commit
39946beda8
6 changed files with 79 additions and 12 deletions
|
@ -51,7 +51,6 @@
|
|||
#sentry_traces_sample_rate = 0.15
|
||||
|
||||
|
||||
|
||||
### Database configuration
|
||||
|
||||
# This is the only directory where conduwuit will save its data, including media
|
||||
|
@ -63,7 +62,6 @@ database_path = "/var/lib/matrix-conduit/"
|
|||
database_backend = "rocksdb"
|
||||
|
||||
|
||||
|
||||
### Network
|
||||
|
||||
# The port(s) conduwuit will be running on. You need to set up a reverse proxy such as
|
||||
|
@ -75,7 +73,7 @@ port = 6167
|
|||
|
||||
# default address (IPv4 or IPv6) conduwuit will listen on. Generally you want this to be
|
||||
# localhost (127.0.0.1 / ::1). If you are using Docker or a container NAT networking setup, you
|
||||
# likely need this to be 0.0.0.0.
|
||||
# likely need this to be 0.0.0.0.
|
||||
address = "127.0.0.1"
|
||||
|
||||
# How many requests conduwuit sends to other servers at the same time concurrently. Default is 500
|
||||
|
@ -153,7 +151,6 @@ ip_range_denylist = [
|
|||
]
|
||||
|
||||
|
||||
|
||||
### Moderation / Privacy / Security
|
||||
|
||||
# Set to true to allow user type "guest" registrations. Element attempts to register guest users automatically.
|
||||
|
@ -250,6 +247,13 @@ url_preview_max_spider_size = 384_000
|
|||
# Useful if the domain contains allowlist is still too broad for you but you still want to allow all the subdomains under a root domain.
|
||||
url_preview_check_root_domain = false
|
||||
|
||||
# A single contact and/or support page for /.well-known/matrix/support
|
||||
# All options here are strings. Currently only supports 1 single contact.
|
||||
# No default.
|
||||
#well_known_support_page = ""
|
||||
#well_known_support_role = ""
|
||||
#well_known_support_email = ""
|
||||
#well_known_support_mxid = ""
|
||||
|
||||
|
||||
### Misc
|
||||
|
@ -344,7 +348,6 @@ url_preview_check_root_domain = false
|
|||
#cleanup_second_interval = 1800
|
||||
|
||||
|
||||
|
||||
### RocksDB options
|
||||
|
||||
# Set this to true to use RocksDB config options that are tailored to HDDs (slower device storage)
|
||||
|
@ -439,7 +442,6 @@ url_preview_check_root_domain = false
|
|||
#rocksdb_recovery_mode = 1
|
||||
|
||||
|
||||
|
||||
### Domain Name Resolution and Caching
|
||||
|
||||
# Maximum entries stored in DNS memory-cache. The size of an entry may vary so please take care if
|
||||
|
@ -470,7 +472,6 @@ url_preview_check_root_domain = false
|
|||
#query_all_nameservers = false
|
||||
|
||||
|
||||
|
||||
### Request Timeouts, Connection Timeouts, and Connection Pooling
|
||||
|
||||
## Request Timeouts are HTTP response timeouts
|
||||
|
@ -548,7 +549,6 @@ url_preview_check_root_domain = false
|
|||
#pusher_idle_timeout = 15
|
||||
|
||||
|
||||
|
||||
### Presence / Typing Indicators / Read Receipts
|
||||
|
||||
# Config option to control local (your server only) presence updates/requests. Defaults to true.
|
||||
|
@ -597,7 +597,6 @@ url_preview_check_root_domain = false
|
|||
#typing_client_timeout_max_s = 45
|
||||
|
||||
|
||||
|
||||
# Other options not in [global]:
|
||||
#
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue