You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
878 B
26 lines
878 B
# Root ACL resource for the agent account
|
|
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
|
|
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
|
|
|
|
# The homepage is readable by the public
|
|
<#public>
|
|
a acl:Authorization;
|
|
acl:agentClass foaf:Agent;
|
|
acl:accessTo <./>;
|
|
acl:mode acl:Read.
|
|
|
|
# The owner has full access to every resource in their pod.
|
|
# Other agents have no access rights,
|
|
# unless specifically authorized in other .acl resources.
|
|
<#owner>
|
|
a acl:Authorization;
|
|
acl:agent <http://localhost:3001/example/profile/card#me>;
|
|
# Optional owner email, to be used for account recovery:
|
|
|
|
# Set the access to the root storage folder itself
|
|
acl:accessTo <./>;
|
|
# All resources will inherit this authorization, by default
|
|
acl:default <./>;
|
|
# The owner has all of the access modes allowed
|
|
acl:mode
|
|
acl:Read, acl:Write, acl:Control.
|
|
|