annotate mod_s2s_blacklist/README.markdown @ 5553:67152838afbc

mod_http_oauth2: Improve error messages for URI properties Since there are separate validation checks for URI properties, including that they should use https, with better and more specific error reporting. Reverts 'luaPattern' to 'pattern' which is not currently supported by util.jsonschema, but allows anything that retrieves the schema over http to validate against it, should they wish to do so.
author Kim Alvefur <zash@zash.se>
date Sat, 17 Jun 2023 18:15:00 +0200
parents 3b5358934d15
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3154
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
1 This module lets you block connections to remote servers at the s2s
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
2 level.
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
3
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
4 ``` {.lua}
5183
3b5358934d15 mod_s2s_blacklist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents: 3154
diff changeset
5 modules_enabled = {
3b5358934d15 mod_s2s_blacklist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents: 3154
diff changeset
6 -- other modules --
3b5358934d15 mod_s2s_blacklist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents: 3154
diff changeset
7 "s2s_blacklist",
3b5358934d15 mod_s2s_blacklist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents: 3154
diff changeset
8
3b5358934d15 mod_s2s_blacklist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents: 3154
diff changeset
9 }
3154
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
10 s2s_blacklist = {
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
11 "proxy.eu.jabber.org",
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
12 }
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
13 ```