mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-02 08:16:50 +00:00
Add certfile and keyfile to default configuration (#7508)
This commit is contained in:
parent
f53128b925
commit
350ca8f74c
@ -19,7 +19,9 @@ Setup and manage a [Let's Encrypt](https://letsencrypt.org/) certificate. This a
|
|||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"email": "example@example.com",
|
"email": "example@example.com",
|
||||||
"domains": ["example.com", "mqtt.example.com", "hass.example.com"]
|
"domains": ["example.com", "mqtt.example.com", "hass.example.com"],
|
||||||
|
"certfile": "fullchain.pem",
|
||||||
|
"keyfile": "privkey.pem"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -32,6 +34,16 @@ domains:
|
|||||||
description: A list of domains to create/renew the certificate.
|
description: A list of domains to create/renew the certificate.
|
||||||
required: true
|
required: true
|
||||||
type: list
|
type: list
|
||||||
|
certfile:
|
||||||
|
description: Name of the certfile that is created. Leave as default value.
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
default: fullchain.pem
|
||||||
|
keyfile:
|
||||||
|
description: Name of the keyfile that is created. Leave as default value.
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
default: privkey.pem
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
## {% linkable_title Home Assistant configuration %}
|
## {% linkable_title Home Assistant configuration %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user