File tree Expand file tree Collapse file tree 4 files changed +47
-0
lines changed
Expand file tree Collapse file tree 4 files changed +47
-0
lines changed 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+ # Individual users 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+ <#owner>
9+ a acl:Authorization;
10+
11+ acl:agent
12+ <{{webId}}>;
13+
14+ acl:accessTo </robots.txt>;
15+
16+ acl:mode
17+ acl:Read, acl:Write, acl:Control.
18+
19+ <#public>
20+ a acl:Authorization;
21+
22+ acl:agentClass foaf:Agent; # everyone
23+
24+ acl:accessTo </robots.txt>;
25+
26+ 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