mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-04-20 20:13:40 +03:00
Process comments on docs by jpmens in issue #13
This commit is contained in:
parent
d89c90f468
commit
cc8680a917
2 changed files with 5 additions and 2 deletions
|
@ -42,6 +42,8 @@ where you want to run nsedit
|
||||||
|
|
||||||
* Copy ```includes/config.inc.php-dist``` to ```includes/config.inc.php``` and edit config.inc.php to your needs.
|
* Copy ```includes/config.inc.php-dist``` to ```includes/config.inc.php``` and edit config.inc.php to your needs.
|
||||||
|
|
||||||
|
* By default, nsedit writes its user database to ../etc/pdns.users.sqlite3. Be sure that your webserver can create that directory and write to it
|
||||||
|
|
||||||
* Visit http(s)://<url>/nsedit/ and login with admin/admin (Don't forget to update your password!)
|
* Visit http(s)://<url>/nsedit/ and login with admin/admin (Don't forget to update your password!)
|
||||||
|
|
||||||
Have fun ;)
|
Have fun ;)
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$apiuser = ''; # The PowerDNS API username
|
$apiuser = ''; # The PowerDNS API username. Leave empty for authmethod='xapikey' (see AUTHENTICATION)
|
||||||
$apipass = ''; # The PowerDNS API-user password
|
$apipass = ''; # The PowerDNS API-user password or the PowerDNS-API key (see AUTHENTICATION)
|
||||||
$apiip = ''; # The IP of the PowerDNS API
|
$apiip = ''; # The IP of the PowerDNS API
|
||||||
$apiport = '8081'; # The port of the PowerDNS API
|
$apiport = '8081'; # The port of the PowerDNS API
|
||||||
$apisid = 'localhost'; # PowerDNS's :server_id
|
$apisid = 'localhost'; # PowerDNS's :server_id
|
||||||
$allowzoneadd = FALSE; # Allow normal users to add zones
|
$allowzoneadd = FALSE; # Allow normal users to add zones
|
||||||
|
|
||||||
|
### AUTHENTICATION ###
|
||||||
# The first versions of the PowerDNS API used the standard webserver password
|
# The first versions of the PowerDNS API used the standard webserver password
|
||||||
# for authentication, newer versions use an X-API-Key mechanism. NSEdit tries
|
# for authentication, newer versions use an X-API-Key mechanism. NSEdit tries
|
||||||
# to autodetect the method you should use, but that does affect performance.
|
# to autodetect the method you should use, but that does affect performance.
|
||||||
|
|
Loading…
Add table
Reference in a new issue