-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcss.json
More file actions
90 lines (90 loc) · 3.4 KB
/
Copy pathcss.json
File metadata and controls
90 lines (90 loc) · 3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^7.0.0/components/context.jsonld",
"import": [
"css:config/app/init/initialize-root-pod.json",
"css:config/app/main/default.json",
"css:config/app/variables/default.json",
"css:config/http/handler/default.json",
"css:config/http/middleware/default.json",
"css:config/http/notifications/all.json",
"css:config/http/server-factory/http.json",
"css:config/http/static/default.json",
"css:config/identity/access/public.json",
"css:config/identity/email/default.json",
"css:config/identity/handler/no-accounts-pods.json",
"css:config/identity/oidc/default.json",
"css:config/identity/ownership/token.json",
"css:config/identity/pod/static.json",
"css:config/ldp/authentication/dpop-bearer.json",
"css:config/ldp/authorization/webacl.json",
"css:config/ldp/handler/default.json",
"css:config/ldp/metadata-parser/default.json",
"css:config/ldp/metadata-writer/default.json",
"css:config/ldp/modes/default.json",
"css:config/storage/backend/file.json",
"css:config/storage/key-value/resource-store.json",
"css:config/storage/location/root.json",
"css:config/storage/middleware/default.json",
"css:config/util/auxiliary/acl.json",
"css:config/util/identifiers/suffix.json",
"css:config/util/index/default.json",
"css:config/util/logging/winston.json",
"css:config/util/representation-conversion/default.json",
"css:config/util/resource-locker/file.json",
"css:config/util/variables/default.json"
],
"@graph": [
{
"comment": "The location of the new pod templates folder.",
"@type": "Override",
"overrideInstance": {
"@id": "urn:solid-server:default:PodResourcesGenerator"
},
"overrideParameters": {
"@type": "StaticFolderGenerator",
"templateFolder": "/config/pod-template"
}
},
{
"comment": "Where the WebID is located in the generated pod, relative to the root.",
"@type": "Override",
"overrideInstance": {
"@id": "urn:solid-server:default:PodCreator"
},
"overrideParameters": {
"@type": "BasePodCreator",
"relativeWebIdPath": "profile/card#me"
}
},
{
"comment": [
"The login settings of the account of the root pod. ",
"It is advised to immediately change this password after starting the server."
],
"@type": "Override",
"overrideInstance": {
"@id": "urn:solid-server:default:RootPodInitializer"
},
"overrideParameters": {
"@type": "AccountInitializer",
"email": "naive.developer@example.com",
"password": "ToAllHackersInTheWorldThisIs_secret!"
}
},
{
"comment": "Using local copies of the following resources, avoiding their 'Too Many Requests' responses",
"@id": "urn:solid-server:default:RdfToQuadConverter",
"@type": "RdfToQuadConverter",
"contexts": [
{
"RdfToQuadConverter:_contexts_key": "https://www.w3.org/2018/credentials/v1",
"RdfToQuadConverter:_contexts_value": "/custom-css/context-files/credentials-v1.jsonld"
},
{
"RdfToQuadConverter:_contexts_key": "https://w3id.org/security/data-integrity/v2",
"RdfToQuadConverter:_contexts_value": "/custom-css/context-files/data-integrity-v2.jsonld"
}
]
}
]
}