https://github.com/progrium/domfo
Simple domain forwarder -- redirects web requests based on URL in TXT record
https://github.com/progrium/domfo
Last synced: about 1 year ago
JSON representation
Simple domain forwarder -- redirects web requests based on URL in TXT record
- Host: GitHub
- URL: https://github.com/progrium/domfo
- Owner: progrium
- Created: 2009-09-22T03:41:36.000Z (almost 17 years ago)
- Default Branch: master
- Last Pushed: 2011-11-21T20:28:47.000Z (over 14 years ago)
- Last Synced: 2024-05-08T22:03:19.567Z (about 2 years ago)
- Language: Python
- Homepage:
- Size: 324 KB
- Stars: 7
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
domfo
=====
Domain Forwarder
This is a simple web server that redirects requests to the location found in the TXT record for the domain in the host of the incoming request. There is no security, so if somebody knows the host/IP of your running domfo instance, they can use it to forward their domain.
Here's how you use it once it's running. Say it's running on port 80 at redirect.domdori.com ... so if you want to use it to redirect your new domain "superdomain.com" to "http://myblog.com", you set up two DNS records for superdomain.com:
* CNAME record to redirect.domdori.com
* TXT record with "location=http://myblog.com"
And you're done! Requests to http://superdomain.com will redirect to http://myblog.com once DNS propagates.