resolved @benjdlambert comments

Signed-off-by: Luka Siric <siric.luka@gmail.com>
This commit is contained in:
Luka Siric
2022-08-31 12:27:18 +02:00
parent eef0522644
commit 6ec5064c94
3 changed files with 23 additions and 41 deletions
+23
View File
@@ -248,6 +248,29 @@
"description": "The port that the frontend should be bound to. Only used for local development."
}
}
},
"https": {
"type": "object",
"description": "Running the frontend app with https",
"properties": {
"certificate": {
"type": "object",
"description": "Parent object containing certificate and the private key",
"required": ["key", "cert"],
"properties" : {
"key": {
"type" : "string",
"visibility": "secret",
"description": "Https Certificate private key. Use $file to load in a file"
},
"cert": {
"type" : "string",
"visibility": "secret",
"description": "Https Certificate. Use $file to load in a file"
}
}
}
}
}
}
}