mod_s2s_blacklist/README.markdown
author Kim Alvefur <zash@zash.se>
Tue, 02 May 2023 16:31:25 +0200
changeset 5409 c7a5caad28ef
parent 5187 3b5358934d15
permissions -rw-r--r--
mod_http_oauth2: Enforce response type encoded in client_id The client promises to only use this response type, so we should hold them to that. This makes it fail earlier if the response type is disabled or the client is trying to use one that it promised not to use. Better than failing after login and consent.

This module lets you block connections to remote servers at the s2s
level.

``` {.lua}
modules_enabled = {
    -- other modules --
    "s2s_blacklist",

}
s2s_blacklist = {
    "proxy.eu.jabber.org",
}
```