CommunitySolidServer/config/http/server-factory/https-no-cli-example.json
2023-10-19 09:13:48 +02:00

18 lines
643 B
JSON

{
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^7.0.0/components/context.jsonld",
"import": [
"css:config/http/server-factory/configurator/default.json"
],
"@graph": [
{
"comment": "An example of how to set up an HTTPS server providing key/cert paths directly in the config.",
"@id": "urn:solid-server:default:ServerFactory",
"@type": "BaseServerFactory",
"configurator": { "@id": "urn:solid-server:default:ServerConfigurator" },
"options_https": true,
"options_key": "/path/to/server.key",
"options_cert": "/path/to/server.cert"
}
]
}