From b5cb0b546b19abaa46c94ec2f48fd4ca065b5780 Mon Sep 17 00:00:00 2001 From: vshaveyko <10478693+vshaveyko@users.noreply.github.com> Date: Wed, 22 Jul 2026 10:56:29 -0400 Subject: [PATCH 1/2] Add enwella.com clinic-website template Domain Connect template for one-click DNS setup of an Enwella-hosted clinic website: apex A record, www CNAME to the tenant subdomain, and a domain-ownership TXT record. Signed apply requests via syncPubKeyDomain enwella.com. Co-Authored-By: Claude Opus 4.8 (1M context) --- enwella.com.clinic-website.json | 37 +++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 enwella.com.clinic-website.json diff --git a/enwella.com.clinic-website.json b/enwella.com.clinic-website.json new file mode 100644 index 00000000..add5edd6 --- /dev/null +++ b/enwella.com.clinic-website.json @@ -0,0 +1,37 @@ +{ + "providerId": "enwella.com", + "providerName": "Enwella", + "serviceId": "clinic-website", + "serviceName": "Enwella Website", + "version": 1, + "logoUrl": "https://enwella.com/icon.png", + "description": "Connect your domain to your Enwella-hosted clinic website.", + "variableDescription": "Points your domain (apex + www) at Enwella and verifies ownership so we can issue an SSL certificate for it.", + "syncBlock": false, + "warnPhishing": true, + "hostRequired": false, + "syncPubKeyDomain": "enwella.com", + "records": [ + { + "type": "TXT", + "groupId": "verify", + "host": "_enwella-verify", + "data": "%token%", + "ttl": 3600 + }, + { + "type": "CNAME", + "groupId": "www", + "host": "www", + "pointsTo": "%slug%.enwella.com", + "ttl": 3600 + }, + { + "type": "A", + "groupId": "apex", + "host": "@", + "pointsTo": "35.192.12.29", + "ttl": 3600 + } + ] +} From a0479a0070ef54c6d474c94579586b8b6c864062 Mon Sep 17 00:00:00 2001 From: vshaveyko <10478693+vshaveyko@users.noreply.github.com> Date: Wed, 22 Jul 2026 11:22:54 -0400 Subject: [PATCH 2/2] Remove warnPhishing (must not coexist with syncPubKeyDomain) Co-Authored-By: Claude Opus 4.8 (1M context) --- enwella.com.clinic-website.json | 1 - 1 file changed, 1 deletion(-) diff --git a/enwella.com.clinic-website.json b/enwella.com.clinic-website.json index add5edd6..eca83ad5 100644 --- a/enwella.com.clinic-website.json +++ b/enwella.com.clinic-website.json @@ -8,7 +8,6 @@ "description": "Connect your domain to your Enwella-hosted clinic website.", "variableDescription": "Points your domain (apex + www) at Enwella and verifies ownership so we can issue an SSL certificate for it.", "syncBlock": false, - "warnPhishing": true, "hostRequired": false, "syncPubKeyDomain": "enwella.com", "records": [