annotate mod_s2s_blacklist/README.markdown @ 5256:44f7edd4f845

mod_http_oauth2: Reject non-local hosts in more code paths We're not issuing tokens for users on remote hosts, we can't even authenticate them since they're remote. Thus the host is always the local module.host so no need to pass around the host in most cases or use it for anything but enforcing the same host.
author Kim Alvefur <zash@zash.se>
date Thu, 16 Mar 2023 17:52:10 +0100
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 ```