From f73342e8ae4733b92633286478701326bcf872dc Mon Sep 17 00:00:00 2001 From: Ruben Date: Mon, 3 Mar 2025 14:11:49 +0100 Subject: [PATCH] Add multiple domains example --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bcd828a..8d1e137 100644 --- a/README.md +++ b/README.md @@ -49,9 +49,15 @@ CERT_PERMISSIONS="644" KEY_PERMISSIONS="600" # Certificate Configurations (JSON format) +# Add as many or few domains as you need (but remember to add or delete the JSON comma!) 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", "key_api_key": "your_key_api_key" }