-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.jsonc.example
More file actions
35 lines (30 loc) · 1.42 KB
/
config.jsonc.example
File metadata and controls
35 lines (30 loc) · 1.42 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
{
// Main indexers
"jetstream": "wss://jetstream1.us-east.bsky.network", // you can self host it -> https://github.com/bluesky-social/jetstream
"spacedust": "wss://spacedust.your.site", // you can self host it -> https://www.microcosm.blue
// For backfill (optional)
"constellation": "https://constellation.microcosm.blue", // (not useful on a new setup — requires pre-existing data to backfill)
// Utility services
"slingshot": "https://slingshot.your.site", // you can self host it -> https://www.microcosm.blue
// Index Server config
"indexServer": {
"inviteOnly": true,
"port": 3767,
"did": "did:web:skyliteindexserver.your.site", // should be the same domain as the endpoint
"host": "https://skyliteindexserver.your.site"
},
// View Server config
"viewServer": {
"inviteOnly": true,
"port": 3768,
"did": "did:web:skyliteviewserver.your.site", // should be the same domain as the endpoint
"host": "https://skyliteviewserver.your.site",
// In order of which skylite index servers or bsky appviews to use first
"indexPriority": [
"user#skylite_index", // user resolved skylite index server
"did:web:backupindexserver.your.site#skylite_index", // a specific skylite index server
"user#bsky_appview", // user resolved bsky appview
"did:web:api.bsky.app#bsky_appview" // a specific bsky appview
]
}
}