annotate mod_s2s_whitelist/README.markdown @ 5668:ecfd7aece33b

mod_measure_modules: Report module statuses via OpenMetrics Someone in the chat asked about a health check endpoint, which reminded me of mod_http_status, which provides access to module statuses with full details. After that, this idea came about, which seems natural. As noted in the README, it could be used to monitor that critical modules are in fact loaded correctly. As more modules use the status API, the more useful this module and mod_http_status becomes.
author Kim Alvefur <zash@zash.se>
date Fri, 06 Oct 2023 18:34:39 +0200
parents 313937349fbc
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3155
6e5bde0879ad mod_s2s_whitelist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
1 This module lets you block connections to any remote servers not on a
6e5bde0879ad mod_s2s_whitelist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
2 whitelist.
6e5bde0879ad mod_s2s_whitelist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
3
6e5bde0879ad mod_s2s_whitelist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
4 ``` {.lua}
5184
313937349fbc mod_s2s_whitelist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents: 3155
diff changeset
5 modules_enabled = {
313937349fbc mod_s2s_whitelist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents: 3155
diff changeset
6 -- other modules --
313937349fbc mod_s2s_whitelist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents: 3155
diff changeset
7 "s2s_whitelist",
313937349fbc mod_s2s_whitelist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents: 3155
diff changeset
8
313937349fbc mod_s2s_whitelist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents: 3155
diff changeset
9 }
3155
6e5bde0879ad mod_s2s_whitelist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
10 s2s_whitelist = {
6e5bde0879ad mod_s2s_whitelist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
11 "example.org",
6e5bde0879ad mod_s2s_whitelist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
12 }
6e5bde0879ad mod_s2s_whitelist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
13 ```