Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lirantal/daloradius
daloRADIUS is an advanced RADIUS web management application for managing hotspots and general-purpose ISP deployments. It features user management, graphical reporting, accounting, a billing engine, and integrates with OpenStreetMap for geolocation. The system is based on FreeRADIUS with which it shares access to the backend database.
https://github.com/lirantal/daloradius
freeradius freeradius-webinterface hotspot-management hotspot-manager php radius wifi-manager
Last synced: 23 days ago
JSON representation
daloRADIUS is an advanced RADIUS web management application for managing hotspots and general-purpose ISP deployments. It features user management, graphical reporting, accounting, a billing engine, and integrates with OpenStreetMap for geolocation. The system is based on FreeRADIUS with which it shares access to the backend database.
- Host: GitHub
- URL: https://github.com/lirantal/daloradius
- Owner: lirantal
- License: gpl-2.0
- Created: 2015-05-02T09:06:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-09-18T11:07:25.000Z (about 2 months ago)
- Last Synced: 2024-10-04T09:57:55.242Z (about 1 month ago)
- Topics: freeradius, freeradius-webinterface, hotspot-management, hotspot-manager, php, radius, wifi-manager
- Language: PHP
- Homepage: http://www.daloradius.com
- Size: 25.2 MB
- Stars: 654
- Watchers: 58
- Forks: 335
- Open Issues: 55
-
Metadata Files:
- Readme: README.docker-standalone.md
- Changelog: ChangeLog
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# run daloradius as a standalone container
## prerequisite1. mysql server and freeradius (in docker or on-premise) server that has been configured properly
2. docker runtime## how to run
1. run prebuilt image
2. build the image first### preparing daloradius.conf.php
you can edit sample config and then mount it in container or you can just run container, edit mounted config and re-run container
## prebuilt image
```bash
docker run --name daloradius-standalone -v /path/to/daloradius.conf.php:/var/www/html/daloradius/common/includes/daloradius.conf.php -p 80:80 -p 8000:8000 -d dormancygrace/daloradius
```## build image
```bash
docker build -t daloradius-standalone -f Dockerfile-standalone
``````bash
docker run --name daloradius-standalone -v /path/to/daloradius.conf.php:/var/www/html/daloradius/common/includes/daloradius.conf.php -p 80:80 -p 8000:8000 -d daloradius-standalone
```