not finished doc
This is done on FreeBSD 13.1 and with the help of:
bash
git clone https://github.com/ngoduykhanh/PowerDNS-Admin.git
cd PowerDNS-Admin
virtualenv -p python3 flask
source ./flask/bin/activate
remove python-ldap from requirements.txt
pip install -r requirements.txt
deactivate
configure DB connection:
vim powerdnsadmin/default_config.py
SQLA_DB_USER = 'dnsadmin'
SQLA_DB_PASSWORD = 'mysecretpw'
SQLA_DB_HOST = 'mariadb.domain.name'
SQLA_DB_NAME = 'dnsadmin'
BIND_ADDRESS = '::'