2024-09-16 08:39:29 +02:00

39 lines
1.3 KiB
JSON

{
"@context": [
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^7.0.0/components/context.jsonld",
"https://linkedsoftwaredependencies.org/bundles/npm/asynchronous-handlers/^1.0.0/components/context.jsonld"
],
"@graph": [
{
"comment": "Disables notification routing.",
"@id": "urn:solid-server:default:NotificationHttpHandler",
"@type": "StaticThrowHandler",
"onlyHandle": false,
"factory": { "@id": "urn:solid-server:default:UnsupportedErrorFactory" }
},
{
"@id": "urn:solid-server:default:WebSocketHandler",
"@type": "StatusWaterfallHandler",
"handlers": [
{
"comment": "Catches the server upgrade events and handles the WebSocket connections.",
"@type": "UnsecureWebSocketsProtocol",
"source": { "@id": "urn:solid-server:default:ResourceStore" },
"baseUrl": { "@id": "urn:solid-server:default:variable:baseUrl" }
}
]
},
{
"@id": "urn:solid-server:default:ParallelMiddleware",
"@type": "ParallelHandler",
"handlers": [
{
"comment": "Advertises the websocket connection.",
"@type": "WebSocketAdvertiser",
"baseUrl": { "@id": "urn:solid-server:default:variable:baseUrl" }
}
]
}
]
}