mirror of
https://gitea.blesmrt.net/mikaela/gist.git
synced 2024-11-22 11:19:22 +01:00
matrix/m.room.server_acl: remove unnecessary wildcards, note it
This commit is contained in:
parent
694275d0f2
commit
6ea5a835b2
@ -13,9 +13,13 @@ adjusting this.
|
|||||||
|
|
||||||
- https://matrix.org/docs/guides/moderation#banning-servers-from-rooms-server-acls
|
- https://matrix.org/docs/guides/moderation#banning-servers-from-rooms-server-acls
|
||||||
|
|
||||||
Note: when sending the custom event via `/devtools` for the first time, click
|
Note:
|
||||||
|
|
||||||
|
- When sending the custom event via `/devtools` for the first time, click
|
||||||
the `Event` so it says `State Event` and asks for `State key` in addition to `type`,
|
the `Event` so it says `State Event` and asks for `State key` in addition to `type`,
|
||||||
which can/is left empty as usual.
|
which can/is left empty as usual.
|
||||||
|
- Subdomains appear to be implied by specifying 2nd level domain. E.g.
|
||||||
|
`matrix.org` appears to apply to `*.matrix.org` at least on Synapse.
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
@ -23,26 +27,18 @@ which can/is left empty as usual.
|
|||||||
"allow_ip_literals": false,
|
"allow_ip_literals": false,
|
||||||
"deny": [
|
"deny": [
|
||||||
"matrix.org",
|
"matrix.org",
|
||||||
"*.matrix.org",
|
|
||||||
"mjolnir.matrix.org",
|
"mjolnir.matrix.org",
|
||||||
"disroot.org",
|
"disroot.org",
|
||||||
"privacytools.io",
|
"privacytools.io",
|
||||||
"feneas.org",
|
"feneas.org",
|
||||||
"glowers.club",
|
"glowers.club",
|
||||||
"*.glowers.club",
|
|
||||||
"midov.pl",
|
"midov.pl",
|
||||||
"*.midov.pl",
|
|
||||||
"kiwifarms.net",
|
"kiwifarms.net",
|
||||||
"*.kiwifarms.net",
|
|
||||||
"liberta.casa",
|
"liberta.casa",
|
||||||
"nitro.chat",
|
"nitro.chat",
|
||||||
"*.nitro.chat",
|
|
||||||
"nerdsin.space",
|
"nerdsin.space",
|
||||||
"*.nerdsin.space",
|
|
||||||
"thisisjoes.site",
|
"thisisjoes.site",
|
||||||
"*.thisisjoes.site",
|
"pp13.space"
|
||||||
"pp13.space",
|
|
||||||
"*.pp13.space"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user