A single filesystem permission rule.
Rules are evaluated in declaration order; the first rule whose
operations includes the requested operation AND whose paths
glob-matches the target path determines the outcome. If no rule
matches, access is allowed (permissive default).
All paths must be absolute glob patterns (start with /, no .. or ~).
Supports ** (any depth), * (within one segment), and {a,b} brace expansion.
Paths are validated when passed to createFilesystemMiddleware.
interface FilesystemPermissionWhether matching paths are permitted or blocked. Defaults to "allow".
The operations this rule applies to.
Absolute glob patterns for paths this rule matches.
Must start with /; must not contain .. or ~.
Supports ** (any depth), * (within one segment), and {a,b} brace expansion.