annotate mod_s2s_blacklist/README.markdown @ 5424:b45d9a81b3da

mod_http_oauth2: Revert role selector, going to try something else Back out f2c7bb3af600 Allowing only a single role to be encoded into the grant takes away the possibility of having multiple roles in the grant, one of which is selected when issuing an access token. It also takes away the ability to have zero roles granted, which could be useful e.g. when you only need OIDC scopes.
author Kim Alvefur <zash@zash.se>
date Sun, 07 May 2023 19:40:57 +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 ```