Annotate
mod_readonly/README.markdown @ 5115:4a5837591380
mod_audit: remove event hook
Let's keep it simple for now---also we expose the audit
functionality on the moduleapi level anyway.
author |
Jonas Schäfer <jonas@wielicki.name> |
date |
Thu, 28 Apr 2022 20:22:03 +0200 |
parent |
3437:ce5d1fa69ba3 |
rev |
line source |
3437
|
1 This module blocks configured queries that change server state.
|
|
2
|
|
3 E.g. to make vCard storage read-only:
|
|
4
|
|
5 ``` lua
|
|
6 readonly_stores = {
|
|
7 vcard = { "vcard-temp", "vCard" };
|
|
8 }
|
|
9 ```
|