File tree Expand file tree Collapse file tree 6 files changed +48
-0
lines changed
Expand file tree Collapse file tree 6 files changed +48
-0
lines changed Original file line number Diff line number Diff line change 1+ # ACL for the default .well-known/ resource
2+ # Server operators will be able to override it as they wish
3+ # Public-readable
4+
5+ @prefix acl: <http://www.w3.org/ns/auth/acl#>.
6+ @prefix foaf: <http://xmlns.com/foaf/0.1/>.
7+
8+ <#public>
9+ a acl:Authorization;
10+
11+ acl:agentClass foaf:Agent; # everyone
12+
13+ acl:accessTo </.well-known/>;
14+
15+ acl:mode acl:Read.
Original file line number Diff line number Diff line change 1+ # ACL for the default favicon.ico resource
2+ # Server operators will be able to override it as they wish
3+ # Public-readable
4+
5+ @prefix acl: <http://www.w3.org/ns/auth/acl#>.
6+ @prefix foaf: <http://xmlns.com/foaf/0.1/>.
7+
8+ <#public>
9+ a acl:Authorization;
10+
11+ acl:agentClass foaf:Agent; # everyone
12+
13+ acl:accessTo </favicon.ico>;
14+
15+ acl:mode acl:Read.
Original file line number Diff line number Diff line change 1+ User-agent: *
2+ # Allow all crawling (subject to ACLs as usual, of course)
3+ Disallow:
Original file line number Diff line number Diff line change 1+ # ACL for the default robots.txt resource
2+ # Server operators will be able to override it as they wish
3+ # Public-readable
4+
5+ @prefix acl: <http://www.w3.org/ns/auth/acl#>.
6+ @prefix foaf: <http://xmlns.com/foaf/0.1/>.
7+
8+ <#public>
9+ a acl:Authorization;
10+
11+ acl:agentClass foaf:Agent; # everyone
12+
13+ acl:accessTo </robots.txt>;
14+
15+ acl:mode acl:Read.
You can’t perform that action at this time.
0 commit comments