https://github.com/zaxbux/workers-rdap
https://github.com/zaxbux/workers-rdap
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zaxbux/workers-rdap
- Owner: zaxbux
- License: mit
- Created: 2023-01-30T09:58:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-30T10:15:17.000Z (over 3 years ago)
- Last Synced: 2025-06-10T10:52:44.058Z (about 1 year ago)
- Language: TypeScript
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# RDAP Bootstrap Service
A simple RDAP bootstrap service ([RFC 7484](https://tools.ietf.org/html/rfc7484)).
## Configuration
```sh
# Allowed CORS origins (defaults to *)
CORS_ORIGINS='example.com,example.net'
# URLs for each bootstrap file (defaults to IANA)
DOWNLOAD_BOOTSTRAP_FILE_URLS='{
"asn": "https://data.iana.org/rdap/asn.json",
"ipv4": "https://data.iana.org/rdap/ipv4.json",
"ipv6": "https://data.iana.org/rdap/ipv6.json",
"dns": "https://data.iana.org/rdap/dns.json",
"object_tags": "https://data.iana.org/rdap/object-tags.json"
}'
# By default, redirect URLs are preferred to be HTTPs. Set true to match the request protocol instead.
MATCH_PROTOCOL=false
```