mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
8e5f3251b5
* Feat: Add SSL support for webserver + websocket Finally, Hyperion reaches the SSL century! - Uses by default a internal key and certificate to provide working HTTPS out-of-the-box - Your browser won't like that, for a green ssl seal next to the browser address bar you need to use Let's Encrypt with a own legit domain. This is out of the scope of Hyperion
59 lines
1.1 KiB
JSON
59 lines
1.1 KiB
JSON
{
|
|
"type" : "object",
|
|
"title" : "edt_conf_webc_heading_title",
|
|
"properties" :
|
|
{
|
|
"document_root" :
|
|
{
|
|
"type" : "string",
|
|
"title" : "edt_conf_webc_docroot_title",
|
|
"access" : "expert",
|
|
"propertyOrder" : 2
|
|
},
|
|
"port" :
|
|
{
|
|
"type" : "integer",
|
|
"title" : "edt_conf_general_port_title",
|
|
"minimum" : 80,
|
|
"maximum" : 65535,
|
|
"default" : 8090,
|
|
"propertyOrder" : 3
|
|
},
|
|
"sslPort" :
|
|
{
|
|
"type" : "integer",
|
|
"title" : "edt_conf_webc_sslport_title",
|
|
"required" : true,
|
|
"minimum" : 80,
|
|
"maximum" : 65535,
|
|
"default" : 8092,
|
|
"propertyOrder" : 4
|
|
},
|
|
"crtPath" :
|
|
{
|
|
"type" : "string",
|
|
"title" : "edt_conf_webc_crtPath_title",
|
|
"required" : true,
|
|
"default" : "",
|
|
"propertyOrder" : 5
|
|
},
|
|
"keyPath" :
|
|
{
|
|
"type" : "string",
|
|
"title" : "edt_conf_webc_keyPath_title",
|
|
"required" : true,
|
|
"default" : "",
|
|
"propertyOrder" : 6
|
|
},
|
|
"keyPassPhrase" :
|
|
{
|
|
"type" : "string",
|
|
"title" : "edt_conf_webc_keyPassPhrase_title",
|
|
"required" : true,
|
|
"default" : "",
|
|
"propertyOrder" : 7
|
|
}
|
|
},
|
|
"additionalProperties" : false
|
|
}
|