Add certfile and keyfile to default configuration (#7508)

This commit is contained in:
Scott Gauche 2018-11-15 03:28:50 -05:00 committed by Fabian Affolter
parent f53128b925
commit 350ca8f74c

View File

@ -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 %}