Skip to content

Commit 328e55f

Browse files
authored
Lightfunnels domain-connect template (#569)
# Description This pull request adds a Domain Connect template for LightFunnels, enabling users to easily connect their custom domain to their LightFunnels shop. The template includes CNAME records for the www subdomain and custom subdomains, simplifying the domain configuration process for LightFunnels users ## Type of change Please mark options that are relevant. - [X] New template # How Has This Been Tested? Please mark the following checks done - [X] Schema validated using JSON Schema [template.schema](./template.schema) - [X] Template functionality checked using [Online Editor](https://pdnsadmin.revproxy.short-lived.de/dc/free/templateedit) - [ ] Template is checked using [template linter](https://github.com/Domain-Connect/dc-template-linter) - [X] Template file name follows the pattern `<providerId>.<serviceId>.json` # Example variable values ``` v1: aaa ```
2 parents 2ad32ac + 4af38c1 commit 328e55f

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

lightfunnels.com.website.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"providerId": "lightfunnels.com",
3+
"providerName": "LightFunnels",
4+
"serviceId": "website",
5+
"serviceName": "LightFunnels",
6+
"version": 1,
7+
"logoUrl": "https://www.lightfunnels.com/images/lightfunnels-logo.svg",
8+
"description": "Enables a domain to work with LightFunnels",
9+
"variableDescription": "v1 is the subdomain prefix",
10+
"records": [
11+
{
12+
"type": "CNAME",
13+
"host": "www",
14+
"pointsTo": "shop.mylightfunnels.com",
15+
"ttl": 3600
16+
},
17+
{
18+
"type": "CNAME",
19+
"host": "%v1%",
20+
"pointsTo": "shop.mylightfunnels.com",
21+
"ttl": 3600
22+
}
23+
]
24+
}

0 commit comments

Comments
 (0)