mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-19 18:11:30 +01:00
.. | ||
templates/subdomains | ||
__init__.py | ||
cloudflare.py | ||
config.json | ||
crud.py | ||
migrations.py | ||
models.py | ||
README.md | ||
tasks.py | ||
util.py | ||
views_api.py | ||
views.py |
Subdomains Extension
So the goal of the extension is to allow the owner of a domain to sell subdomains to anyone who is willing to pay some money for it.
Requirements
- Free Cloudflare account
- Cloudflare as a DNS server provider
- Cloudflare TOKEN and Cloudflare zone-ID where the domain is parked
Usage
-
Register at Cloudflare and setup your domain with them. (Just follow instructions they provide...)
-
Change DNS server at your domain registrar to point to Cloudflare's
-
Get Cloudflare zone-ID for your domain
-
Get Cloudflare API TOKEN
-
Open the LNbits subdomains extension and register your domain
-
Click on the button in the table to open the public form that was generated for your domain
- Extension also supports webhooks so you can get notified when someone buys a new subdomain
- Extension also supports webhooks so you can get notified when someone buys a new subdomain
API Endpoints
- Domains
- GET /api/v1/domains
- POST /api/v1/domains
- PUT /api/v1/domains/<domain_id>
- DELETE /api/v1/domains/<domain_id>
- Subdomains
- GET /api/v1/subdomains
- POST /api/v1/subdomains/<domain_id>
- GET /api/v1/subdomains/<payment_hash>
- DELETE /api/v1/subdomains/<subdomain_id>
Cloudflare
- Cloudflare offers programmatic subdomain registration... (create new A record)
- you can keep your existing domain's registrar, you just have to transfer dns records to the cloudflare (free service)
- more information:
- https://api.cloudflare.com/#getting-started-requests
- API endpoints needed for our project:
- api can be used by providing authorization token OR authorization key
- check API Tokens and API Keys : https://api.cloudflare.com/#getting-started-requests
- Cloudflare API postman collection: https://support.cloudflare.com/hc/en-us/articles/115002323852-Using-Cloudflare-API-with-Postman-Collections