comparison mod_s2s_whitelist/README.markdown @ 5184:313937349fbc

mod_s2s_whitelist/README: Show inclusion in modules_enabled in example Thanks amalgame21
author Kim Alvefur <zash@zash.se>
date Thu, 02 Mar 2023 11:38:57 +0100
parents 6e5bde0879ad
children
comparison
equal deleted inserted replaced
5183:3b5358934d15 5184:313937349fbc
1 This module lets you block connections to any remote servers not on a 1 This module lets you block connections to any remote servers not on a
2 whitelist. 2 whitelist.
3 3
4 ``` {.lua} 4 ``` {.lua}
5 modules_enabled = {
6 -- other modules --
7 "s2s_whitelist",
8
9 }
5 s2s_whitelist = { 10 s2s_whitelist = {
6 "example.org", 11 "example.org",
7 } 12 }
8 ``` 13 ```