Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/asmaps/hopper.pw
Free and open source dynamic DNS
https://github.com/asmaps/hopper.pw
Last synced: 5 days ago
JSON representation
Free and open source dynamic DNS
- Host: GitHub
- URL: https://github.com/asmaps/hopper.pw
- Owner: asmaps
- License: other
- Created: 2013-09-30T21:43:49.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-06-27T11:08:27.000Z (over 8 years ago)
- Last Synced: 2024-08-01T12:28:28.970Z (3 months ago)
- Language: HTML
- Homepage: http://asmaps.github.io/hopper-pages/
- Size: 4.7 MB
- Stars: 134
- Watchers: 15
- Forks: 33
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - asmaps/hopper.pw - Free and open source dynamic DNS (others)
README
# Free service shutdown notice
The free service on https://www.hopper.pw is no longer available. For more info see this page: http://asmaps.github.io/hopper-pages/
# About hopper.pw
hopper.pw is the idea of a really simple single purpose dynamic dns service.
Unlike other dynamic dns services its intention is that you do not
have to click a link every 30 days to keep your domain enabled or other jokes
like this.
The basic software was originally developed during DjangoDash 2013 by Arne
Schauf, Fabian Faessler and Thomas Waldmann. Hopper.pw was a fork after the dash
to continue developing and add new features.# Features (Frontend)
* Dynamic DNS updates via URL with Basic Http-Auth
* Multiple Hosts for each user
* Custom comment for each host
* Manual IP updates via webinterface
* Show time since last update via api
* Add own domains (public or only for yourself) - you will need an nsupdate-capable dns-server for that (currently
disabled)# Features (Backend)
* Use of awesome django framework
* Nameserver updates via RFC2136
* Nameserver to update configurable via DB for each domain# Contact
Feel free to join us via IRC on freenode in channel #hopper.pw and follow on twitter [@hopper_dyndns](https://twitter.com/hopper_dyndns)
# Installation
If you haven't already done create and change to a virtualenv for the
installation (here with virtualenvwrapper)::
```
mkvirtualenv hopper.pw
workon hopper.pw
```Clone the repo and cd into::
```
git clone [email protected]:asmaps/hopper.pw.git hopper.pw
cd hopper.pw
```Then install the requirements::
```
pip install -r requirements.txt
```
From time to time execute this again to install the newest dependencies.For production environments I prefer gunicorn with nginx and postgresql as DB.
For the moment please use google for instructions how to set it up.[Install guide for debian](https://github.com/asmaps/hopper.pw/blob/master/Debian-Install-Guide.md) thx [@RedSunEmpire](https://github.com/RedSunEmpire) for contributing!