Skip to content

Commit 02a1802

Browse files
Merge pull request #702 from codeforpdx/701-update-CSS-configs
added configs for css v7 deployment used on opencommons
2 parents abc9c3b + 3cc4ab4 commit 02a1802

File tree

3 files changed

+67
-0
lines changed

3 files changed

+67
-0
lines changed

config/solid-server/readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
solid-remote-server-compose.yaml && solid-remote-server-config.json are templates for deploying the server remotely. The server URL can be updated as needed, the current setup is for our deployment on opencommons.
2+
3+
The config should be stored as /config/solid-server/solid-config.json and solid-remote-server-compose.yaml stored at the community solid server root.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
services:
2+
solid-server:
3+
image: solidproject/community-server:7.0
4+
restart: always
5+
user: root
6+
ports:
7+
- '3000:3000'
8+
environment:
9+
- BASE_URL=https://opencommons.net
10+
command: ['--baseUrl', 'https://opencommons.net']
11+
volumes:
12+
- ./data/solid-data:/data
13+
- ./config/solid-server/solid-config.json:/community-server/config/my-config.json
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^7.0.0/components/context.jsonld",
3+
"import": [
4+
"css:config/app/init/static-root.json",
5+
"css:config/app/main/default.json",
6+
"css:config/app/variables/default.json",
7+
"css:config/http/handler/default.json",
8+
"css:config/http/middleware/default.json",
9+
"css:config/http/notifications/all.json",
10+
"css:config/http/server-factory/http.json",
11+
"css:config/http/static/default.json",
12+
"css:config/identity/access/public.json",
13+
"css:config/identity/email/default.json",
14+
"css:config/identity/handler/default.json",
15+
"css:config/identity/oidc/default.json",
16+
"css:config/identity/ownership/token.json",
17+
"css:config/identity/pod/static.json",
18+
"css:config/ldp/authentication/dpop-bearer.json",
19+
"css:config/ldp/authorization/webacl.json",
20+
"css:config/ldp/handler/default.json",
21+
"css:config/ldp/metadata-parser/default.json",
22+
"css:config/ldp/metadata-writer/default.json",
23+
"css:config/ldp/modes/default.json",
24+
"css:config/storage/backend/file.json",
25+
"css:config/storage/key-value/resource-store.json",
26+
"css:config/storage/location/pod.json",
27+
"css:config/storage/middleware/default.json",
28+
"css:config/util/auxiliary/acl.json",
29+
"css:config/util/identifiers/suffix.json",
30+
"css:config/util/index/default.json",
31+
"css:config/util/logging/winston.json",
32+
"css:config/util/representation-conversion/default.json",
33+
"css:config/util/resource-locker/file.json",
34+
"css:config/util/variables/default.json"
35+
],
36+
"@graph": [],
37+
"servers": [
38+
{
39+
"serverUri": "https://opencommons.net/",
40+
"locations": [
41+
{
42+
"url": "https://opencommons.net/",
43+
"availableMediaTypes": ["text/turtle"],
44+
"basePath": "/",
45+
"description": "This config was generated by generator and very basic"
46+
}
47+
]
48+
}
49+
],
50+
"baseUrl": "https://opencommons.net/"
51+
}

0 commit comments

Comments
 (0)