mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
refactor: Add imports that allow for HTTPS through CLI params
This commit is contained in:
parent
ca36d86bc6
commit
9dcba1a288
@ -24,10 +24,12 @@ The following changes pertain to the imports in the default configs:
|
|||||||
- The prefix of all imports was changed from `files-scs` to `css`.
|
- The prefix of all imports was changed from `files-scs` to `css`.
|
||||||
- All default configurations with a file-based backend now use a file-based locker instead of a memory-based one,
|
- All default configurations with a file-based backend now use a file-based locker instead of a memory-based one,
|
||||||
making them threadsafe.
|
making them threadsafe.
|
||||||
|
- 2 new options have been added for the `/http/server-factory/` imports: `https-websockets.json` and `https-no-websockets.json`,
|
||||||
|
which allow starting the server with HTTPS by adding 2 new CLI parameters `httpsKey` and `httpsCert`.
|
||||||
|
|
||||||
The following changes are relevant for v4 custom configs that replaced certain features.
|
The following changes are relevant for v4 custom configs that replaced certain features.
|
||||||
- `config/app/variables/*` was changed to support the new `YargsCliExtractor` format and `SettingsResolver` rename.
|
- `/app/variables/*` was changed to support the new `YargsCliExtractor` format and `SettingsResolver` rename.
|
||||||
- `config/util/resource-locker/memory.json` had the locker @type changed from `SingleThreadedResourceLocker` to `MemoryResourceLocker`.
|
- `/util/resource-locker/memory.json` had the locker @type changed from `SingleThreadedResourceLocker` to `MemoryResourceLocker`.
|
||||||
- The content-length parser has been moved from the default configuration to the quota configurations.
|
- The content-length parser has been moved from the default configuration to the quota configurations.
|
||||||
- `/ldp/metadata-parser/default.json`
|
- `/ldp/metadata-parser/default.json`
|
||||||
- `/storage/backend/*-quota-file.json`
|
- `/storage/backend/*-quota-file.json`
|
||||||
|
@ -16,7 +16,10 @@ and then pass the request along.
|
|||||||
The factory used to create the actual server object.
|
The factory used to create the actual server object.
|
||||||
* *no-websockets*: Only HTTP.
|
* *no-websockets*: Only HTTP.
|
||||||
* *websockets*: HTTP and websockets.
|
* *websockets*: HTTP and websockets.
|
||||||
* *https-example*: An example configuration to use HTTPS directly at the server (instead of at a reverse proxy).
|
* *https-no-websockets*: Only HTTPS. Adds 2 new CLI params to set the key/cert paths.
|
||||||
|
* *https-websockets*: HTTPS and websockets. Adds 2 new CLI params to set the key/cert paths.
|
||||||
|
* *https-example*: An example configuration to use HTTPS directly at the server (instead of at a reverse proxy)
|
||||||
|
by adding the key/cert paths to the config itself.
|
||||||
|
|
||||||
## Static
|
## Static
|
||||||
Support for static files that should be found at a specific path.
|
Support for static files that should be found at a specific path.
|
||||||
|
21
config/http/server-factory/https-no-websockets.json
Normal file
21
config/http/server-factory/https-no-websockets.json
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^5.0.0/components/context.jsonld",
|
||||||
|
"@graph": [
|
||||||
|
{
|
||||||
|
"comment": "Creates a server that supports HTTPS requests.",
|
||||||
|
"@id": "urn:solid-server:default:ServerFactory",
|
||||||
|
"@type": "BaseHttpServerFactory",
|
||||||
|
"handler": { "@id": "urn:solid-server:default:HttpHandler" },
|
||||||
|
"options_showStackTrace": { "@id": "urn:solid-server:default:variable:showStackTrace" },
|
||||||
|
"options_https": true,
|
||||||
|
"options_key": {
|
||||||
|
"@id": "urn:solid-server:custom:variable:httpsKey",
|
||||||
|
"@type": "Variable"
|
||||||
|
},
|
||||||
|
"options_cert": {
|
||||||
|
"@id": "urn:solid-server:custom:variable:httpsCert",
|
||||||
|
"@type": "Variable"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
33
config/http/server-factory/https-websockets.json
Normal file
33
config/http/server-factory/https-websockets.json
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{
|
||||||
|
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^5.0.0/components/context.jsonld",
|
||||||
|
"import": [
|
||||||
|
"css:config/http/server-factory/https/cli.json",
|
||||||
|
"css:config/http/server-factory/https/resolver.json"
|
||||||
|
],
|
||||||
|
"@graph": [
|
||||||
|
{
|
||||||
|
"comment": "Creates an HTTPS server with the settings provided via the command line.",
|
||||||
|
"@id": "urn:solid-server:default:ServerFactory",
|
||||||
|
"@type": "WebSocketServerFactory",
|
||||||
|
"baseServerFactory": {
|
||||||
|
"@id": "urn:solid-server:default:HttpServerFactory",
|
||||||
|
"@type": "BaseHttpServerFactory",
|
||||||
|
"handler": { "@id": "urn:solid-server:default:HttpHandler" },
|
||||||
|
"options_showStackTrace": { "@id": "urn:solid-server:default:variable:showStackTrace" },
|
||||||
|
"options_https": true,
|
||||||
|
"options_key": {
|
||||||
|
"@id": "urn:solid-server:custom:variable:httpsKey",
|
||||||
|
"@type": "Variable"
|
||||||
|
},
|
||||||
|
"options_cert": {
|
||||||
|
"@id": "urn:solid-server:custom:variable:httpsCert",
|
||||||
|
"@type": "Variable"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"webSocketHandler": {
|
||||||
|
"@type": "UnsecureWebSocketsProtocol",
|
||||||
|
"source": { "@id": "urn:solid-server:default:ResourceStore" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
31
config/http/server-factory/https/cli.json
Normal file
31
config/http/server-factory/https/cli.json
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{
|
||||||
|
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^5.0.0/components/context.jsonld",
|
||||||
|
"@graph": [
|
||||||
|
{
|
||||||
|
"@id": "urn:solid-server-app-setup:default:CliExtractor",
|
||||||
|
"@type": "YargsCliExtractor",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"@type": "YargsParameter",
|
||||||
|
"name": "httpsKey",
|
||||||
|
"options": {
|
||||||
|
"demandOption": true,
|
||||||
|
"requiresArg": true,
|
||||||
|
"type": "string",
|
||||||
|
"describe": "File path to the HTTPS key."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "YargsParameter",
|
||||||
|
"name": "httpsCert",
|
||||||
|
"options": {
|
||||||
|
"demandOption": true,
|
||||||
|
"requiresArg": true,
|
||||||
|
"type": "string",
|
||||||
|
"describe": "File path to the HTTPS certificate."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
config/http/server-factory/https/resolver.json
Normal file
26
config/http/server-factory/https/resolver.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^5.0.0/components/context.jsonld",
|
||||||
|
"@graph": [
|
||||||
|
{
|
||||||
|
"comment": "Adds resolvers to assign the HTTPS CLI values to the Components.js variables.",
|
||||||
|
"@id": "urn:solid-server-app-setup:default:ShorthandResolver",
|
||||||
|
"@type": "CombinedShorthandResolver",
|
||||||
|
"resolvers": [
|
||||||
|
{
|
||||||
|
"CombinedShorthandResolver:_resolvers_key": "urn:solid-server:custom:variable:httpsKey",
|
||||||
|
"CombinedShorthandResolver:_resolvers_value": {
|
||||||
|
"@type": "KeyExtractor",
|
||||||
|
"key": "httpsKey"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CombinedShorthandResolver:_resolvers_key": "urn:solid-server:custom:variable:httpsCert",
|
||||||
|
"CombinedShorthandResolver:_resolvers_value": {
|
||||||
|
"@type": "KeyExtractor",
|
||||||
|
"key": "httpsCert"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -7,7 +7,7 @@
|
|||||||
"css:config/app/variables/default.json",
|
"css:config/app/variables/default.json",
|
||||||
"css:config/http/handler/default.json",
|
"css:config/http/handler/default.json",
|
||||||
"css:config/http/middleware/websockets.json",
|
"css:config/http/middleware/websockets.json",
|
||||||
|
"css:config/http/server-factory/https-websockets.json",
|
||||||
"css:config/http/static/default.json",
|
"css:config/http/static/default.json",
|
||||||
"css:config/identity/access/public.json",
|
"css:config/identity/access/public.json",
|
||||||
"css:config/identity/email/default.json",
|
"css:config/identity/email/default.json",
|
||||||
@ -34,84 +34,7 @@
|
|||||||
],
|
],
|
||||||
"@graph": [
|
"@graph": [
|
||||||
{
|
{
|
||||||
"comment": [
|
"comment": "Adds CLI options --httpsKey and --httpsCert and uses those to start an HTTPS server."
|
||||||
"Adds CLI options --httpsKey and --httpsCert and uses those to start an HTTPS server.",
|
|
||||||
"The http/server-factory import above has been omitted since that feature is set below."
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@id": "urn:solid-server-app-setup:default:CliExtractor",
|
|
||||||
"@type": "YargsCliExtractor",
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"@type": "YargsParameter",
|
|
||||||
"name": "httpsKey",
|
|
||||||
"options": {
|
|
||||||
"demandOption": true,
|
|
||||||
"requiresArg": true,
|
|
||||||
"type": "string",
|
|
||||||
"describe": "File path to the HTTPS key."
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "YargsParameter",
|
|
||||||
"name": "httpsCert",
|
|
||||||
"options": {
|
|
||||||
"demandOption": true,
|
|
||||||
"requiresArg": true,
|
|
||||||
"type": "string",
|
|
||||||
"describe": "File path to the HTTPS certificate."
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"comment": "Adds resolvers to assign the CLI values to the Components.js variables.",
|
|
||||||
"@id": "urn:solid-server-app-setup:default:ShorthandResolver",
|
|
||||||
"@type": "CombinedShorthandResolver",
|
|
||||||
"resolvers": [
|
|
||||||
{
|
|
||||||
"CombinedShorthandResolver:_resolvers_key": "urn:solid-server:custom:variable:httpsKey",
|
|
||||||
"CombinedShorthandResolver:_resolvers_value": {
|
|
||||||
"@type": "KeyExtractor",
|
|
||||||
"key": "httpsKey"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"CombinedShorthandResolver:_resolvers_key": "urn:solid-server:custom:variable:httpsCert",
|
|
||||||
"CombinedShorthandResolver:_resolvers_value": {
|
|
||||||
"@type": "KeyExtractor",
|
|
||||||
"key": "httpsCert"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"comment": [
|
|
||||||
"Creates an HTTPS server with the settings provided via the command line.",
|
|
||||||
"Replaces the example import from config/http/server-factory.https-example.json."
|
|
||||||
],
|
|
||||||
"@id": "urn:solid-server:default:ServerFactory",
|
|
||||||
"@type": "WebSocketServerFactory",
|
|
||||||
"baseServerFactory": {
|
|
||||||
"@id": "urn:solid-server:default:HttpServerFactory",
|
|
||||||
"@type": "BaseHttpServerFactory",
|
|
||||||
"handler": { "@id": "urn:solid-server:default:HttpHandler" },
|
|
||||||
"options_showStackTrace": { "@id": "urn:solid-server:default:variable:showStackTrace" },
|
|
||||||
"options_https": true,
|
|
||||||
"options_key": {
|
|
||||||
"@id": "urn:solid-server:custom:variable:httpsKey",
|
|
||||||
"@type": "Variable"
|
|
||||||
},
|
|
||||||
"options_cert": {
|
|
||||||
"@id": "urn:solid-server:custom:variable:httpsCert",
|
|
||||||
"@type": "Variable"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"webSocketHandler": {
|
|
||||||
"@type": "UnsecureWebSocketsProtocol",
|
|
||||||
"source": { "@id": "urn:solid-server:default:ResourceStore" }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user