1
0
This commit is contained in:
MadLittleMods
2025-07-22 15:36:23 +00:00
parent 3d58f74283
commit f47c09ea6b
6 changed files with 113 additions and 10 deletions

View File

@@ -547,6 +547,37 @@
}
]
},
"http_proxy": {
"type": [
"string",
"null"
],
"description": "Proxy server to use for HTTP requests.\nFor more details, see the [forward proxy documentation](../../setup/forward_proxy.md).",
"examples": [
"http://USERNAME:PASSWORD@10.0.1.1:8080/"
]
},
"https_proxy": {
"type": [
"string",
"null"
],
"description": "Proxy server to use for HTTPS requests.\nFor more details, see the [forward proxy documentation](../../setup/forward_proxy.md).",
"examples": [
"http://USERNAME:PASSWORD@proxy.example.com:8080/"
]
},
"no_proxy_hosts": {
"type": "array",
"description": "List of hosts, IP addresses, or IP ranges in CIDR format which should not use the proxy. Synapse will directly connect to these hosts.\nFor more details, see the [forward proxy documentation](../../setup/forward_proxy.md).",
"examples": [
[
"master.hostname.example.com",
"10.1.0.0/16",
"172.30.0.0/16"
]
]
},
"dummy_events_threshold": {
"type": "integer",
"description": "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 forward extremities reaches a given threshold, Synapse will send an `org.matrix.dummy_event` event, which will reduce the forward extremities in the room.\n\nThis setting defines the threshold (i.e. number of forward extremities in the room) at which dummy events are sent.",