Currently, all resources get a dedicated ACL file, this can be changed to the following to enable the same functionality.
World read on container resources:
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix target: <./>.
:ReadDefault
a acl:Authorization;
acl:default target:;
acl:agentClass foaf:Agent;
acl:mode acl:Read.
:ReadWriteControl
a acl:Authorization;
acl:accessTo target:;
acl:default target:;
acl:agent </profile/card#me>;
acl:mode acl:Read, acl:Write, acl:Control.