mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
22 lines
837 B
Plaintext
22 lines
837 B
Plaintext
# WARNING: DO NOT USE UNMODIFIED UNLESS FOR TESTING PURPOSES.
|
|
# WHEN IN DOUBT, DELETE THIS DOCUMENT.
|
|
#
|
|
# This root ACL resource allows unrestricted public access to all documents and subcontainers.
|
|
#
|
|
# This document was automatically generated by the Community Solid Server
|
|
# because the "Expose a public root Pod" option was selected during setup,
|
|
# or because setup has been bypassed.
|
|
#
|
|
# We strongly suggest to edit this document such that it restricts permissions.
|
|
|
|
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
|
|
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
|
|
|
|
# Give all agents Read, Write, and Control permissions on everything
|
|
<#authorization>
|
|
a acl:Authorization;
|
|
acl:agentClass foaf:Agent;
|
|
acl:mode acl:Read, acl:Write, acl:Append, acl:Control;
|
|
acl:accessTo <./>;
|
|
acl:default <./>.
|