Skip to content

Commit

Permalink
Lightfunnels domain-connect template (#569)
Browse files Browse the repository at this point in the history
# 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
```
  • Loading branch information
pawel-kow authored Nov 14, 2024
2 parents 2ad32ac + 4af38c1 commit 328e55f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions lightfunnels.com.website.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"providerId": "lightfunnels.com",
"providerName": "LightFunnels",
"serviceId": "website",
"serviceName": "LightFunnels",
"version": 1,
"logoUrl": "https://www.lightfunnels.com/images/lightfunnels-logo.svg",
"description": "Enables a domain to work with LightFunnels",
"variableDescription": "v1 is the subdomain prefix",
"records": [
{
"type": "CNAME",
"host": "www",
"pointsTo": "shop.mylightfunnels.com",
"ttl": 3600
},
{
"type": "CNAME",
"host": "%v1%",
"pointsTo": "shop.mylightfunnels.com",
"ttl": 3600
}
]
}

0 comments on commit 328e55f

Please sign in to comment.