Fix some spelling mistakes in README. Add supported version information.

This commit is contained in:
Ivan Filippov 2016-05-27 00:03:59 -06:00
parent 1d36672352
commit 504b772fba

View File

@ -5,12 +5,15 @@ PowerDNS Web-GUI - Built by Flask
- Multiple domain management - Multiple domain management
- Local / LDAP user authentication - Local / LDAP user authentication
- User management - User management
- User access management base on domain - User access management based on domain
- User activity logging - User activity logging
- Dashboard and pdns service statistics - Dashboard and pdns service statistics
## Setup ## Setup
### PowerDNS Version Support:
PowerDNS-Admin supports PowerDNS autoritative server versions **3.4.2** and higher but does **not** yet support PowerDNS 4.0.0
### pdns Service ### pdns Service
I assume that you have already installed powerdns service. Make sure that your `/etc/pdns/pdns.conf` has these contents I assume that you have already installed powerdns service. Make sure that your `/etc/pdns/pdns.conf` has these contents
``` ```
@ -30,7 +33,7 @@ MariaDB [(none)]> GRANT ALL PRIVILEGES ON powerdnsadmin.* TO powerdnsadmin@'%' I
### PowerDNS-Admin ### PowerDNS-Admin
In this installation guide, I am using CentOS 7 and run my python stuffs with *virtualenv*. If you don't have it, let install: In this installation guide, I am using CentOS 7 and run my python stuffs with *virtualenv*. If you don't have it, lets install it:
``` ```
$ sudo yum install python-pip $ sudo yum install python-pip
$ sudo pip install virtualenv $ sudo pip install virtualenv
@ -55,7 +58,7 @@ Web application configuration is stored in `config.py` file. Let's clone it from
Create database after having proper configs Create database after having proper configs
``` ```
(flask)% ./createdb.py (flask)% ./create_db.py
``` ```