File

mod_s2s_whitelist/README.markdown @ 5247:dc27b997e969

mod_http_oauth2: Invoke mod_http_errors to render error on invalid redirect Turns out returning a table like that produces a blank page. Kinda boring and not very helpful.
author Kim Alvefur <zash@zash.se>
date Sun, 12 Mar 2023 17:56:23 +0100
parent 5184:313937349fbc
line wrap: on
line source

This module lets you block connections to any remote servers not on a
whitelist.

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

}
s2s_whitelist = {
    "example.org",
}
```