Add multiple domains example

This commit is contained in:
Ruben Solvang 2025-03-03 14:11:49 +01:00
parent c5da279249
commit f73342e8ae

View file

@ -49,9 +49,15 @@ CERT_PERMISSIONS="644"
KEY_PERMISSIONS="600" KEY_PERMISSIONS="600"
# Certificate Configurations (JSON format) # Certificate Configurations (JSON format)
# Add as many or few domains as you need (but remember to add or delete the JSON comma!)
CERTIFICATES='[ CERTIFICATES='[
{ {
"domain": "example.com", "domain": "example-one.com",
"cert_api_key": "your_cert_api_key",
"key_api_key": "your_key_api_key"
},
{
"domain": "example-two.com",
"cert_api_key": "your_cert_api_key", "cert_api_key": "your_cert_api_key",
"key_api_key": "your_key_api_key" "key_api_key": "your_key_api_key"
} }