Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"apiTlsClientCaPem": "-",
"cockpitHost": "127.0.0.1",
"cockpitPort": 3000,
"cockpitWwwRoot": "packages/cactus-cmd-api-server/node_modules/@hyperledger/cactus-cockpit/www/",
"cockpitWwwRoot": "",
"cockpitCorsDomainCsv": "",
"cockpitMtlsEnabled": false,
"cockpitTlsEnabled": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,12 +259,11 @@ export class ConfigService {
default: 3000,
},
cockpitWwwRoot: {
doc: "The file-system path pointing to the static files of web application served as the cockpit by the API server.",
doc: "The file-system path pointing to the static files of web application served as the cockpit by the API server. NOTE: The @hyperledger/cactus-cockpit package has been removed from this repository. This configuration option is deprecated and its default value is now an empty string. If you still use a custom cockpit UI, provide a valid path via this setting or the COCKPIT_WWW_ROOT environment variable.",
format: "*",
env: "COCKPIT_WWW_ROOT",
arg: "cockpit-www-root",
default:
"packages/cactus-cmd-api-server/node_modules/@hyperledger/cactus-cockpit/www/",
default: "",
},
cockpitCorsDomainCsv: {
doc:
Expand Down
Loading