# HG changeset patch # User Kim Alvefur # Date 1546888077 -3600 # Node ID ce5d1fa69ba31b397c07b1b5ee7021cd4b5748ec # Parent 12c7c0d7e1b0ab39dce5e6e1e1d87b69fca60398 mod_readonly: Add a stub README diff -r 12c7c0d7e1b0 -r ce5d1fa69ba3 mod_readonly/README.markdown --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_readonly/README.markdown Mon Jan 07 20:07:57 2019 +0100 @@ -0,0 +1,9 @@ +This module blocks configured queries that change server state. + +E.g. to make vCard storage read-only: + +``` lua +readonly_stores = { + vcard = { "vcard-temp", "vCard" }; +} +```