Skip to content

Commit 78c0558

Browse files
committed
more mixed for app and test
1 parent 6e0b966 commit 78c0558

File tree

6 files changed

+48
-0
lines changed

6 files changed

+48
-0
lines changed

test/resources/.well-known/.acl

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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.
4.19 KB
Binary file not shown.

test/resources/favicon.ico

4.19 KB
Binary file not shown.

test/resources/favicon.ico.acl

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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.

test/resources/robots.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
User-agent: *
2+
# Allow all crawling (subject to ACLs as usual, of course)
3+
Disallow:

test/resources/robots.txt.acl

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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.

0 commit comments

Comments
 (0)