|
|
4 years ago | |
|---|---|---|
| .github | 5 years ago | |
| vycontrol | 4 years ago | |
| .dockerignore | 5 years ago | |
| .gitignore | 4 years ago | |
| Dockerfile | 5 years ago | |
| LICENSE | 5 years ago | |
| README.md | 4 years ago | |
| docker-compose.yml | 4 years ago | |
| requirements.txt | 4 years ago |
VyControl is frontend interface to manage a single or multiple VyoS servers.
Datacenters can to offer their customers (with users, groups and granular control) firewall and router as a service.
for your security edit SECRET_KEY in inside Django settings/production.py and change to something random, maybe using
openssl rand -hex 32
latest VyControl is being autobuilt at dockerhub https://hub.docker.com/r/robertoberto/vycontrol
docker pull robertoberto/vycontrol
docker run -p 8000:8000 -t robertoberto/vycontrol
access http://127.0.0.1:8000
Right now we are using db.sqlite3, but I used composer so we can change to mySQL if needed.
docker-compose build
docker-compose up
virtualenv env
source env/bin/activate
pip3 install -r requirements.txt
cd vycontrol
python3 manage.py migrate
python3 manage.py runserver