|
@@ -0,0 +1,75 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+/**
|
|
|
+ * Sample configuration file with default values
|
|
|
+ *
|
|
|
+ * @package Poweradmin
|
|
|
+ * @copyright 2007-2010 Rejo Zenger <rejo@zenger.nl>
|
|
|
+ * @copyright 2010-2014 Poweradmin Development Team
|
|
|
+ * @license http://opensource.org/licenses/GPL-3.0 GPL
|
|
|
+ */
|
|
|
+// NOTE: Do not edit this file, otherwise it's very likely your changes
|
|
|
+// will be overwritten with an upgrade.
|
|
|
+// Instead, create the file "inc/config.inc.php" and set the variables you
|
|
|
+// want to set there. Your changes will override the defaults provided by us.
|
|
|
+// Better description of available configuration settings you can find here:
|
|
|
+// <https://github.com/poweradmin/poweradmin/wiki/Configuration-File>
|
|
|
+// Database settings
|
|
|
+$db_host = 'db';
|
|
|
+$db_port = '';
|
|
|
+$db_user = 'poweradmin';
|
|
|
+$db_pass = '123passphrase';
|
|
|
+$db_name = 'pdns';
|
|
|
+$db_type = 'mysql';
|
|
|
+//$db_file = ''; # used only for SQLite, provide full path to database file
|
|
|
+//$db_debug = false; # show all SQL queries
|
|
|
+$db_layer = 'PDO'; # or MDB2
|
|
|
+//$db_ssl_ca = '';
|
|
|
+// Security settings
|
|
|
+// This should be changed upon install
|
|
|
+$session_key = 'p0w3r4dm1n';
|
|
|
+$password_encryption = 'md5'; // or md5salt
|
|
|
+
|
|
|
+// Interface settings
|
|
|
+$iface_lang = 'en_EN';
|
|
|
+$iface_style = 'example';
|
|
|
+$iface_rowamount = 50;
|
|
|
+$iface_expire = 1800;
|
|
|
+$iface_zonelist_serial = false;
|
|
|
+$iface_title = 'Poweradmin';
|
|
|
+$iface_add_reverse_record = true;
|
|
|
+
|
|
|
+// Predefined DNS settings
|
|
|
+$dns_hostmaster = '';
|
|
|
+$dns_ns1 = '';
|
|
|
+$dns_ns2 = '';
|
|
|
+$dns_ttl = 86400;
|
|
|
+$dns_fancy = false;
|
|
|
+$dns_strict_tld_check = false;
|
|
|
+$dns_top_level_tld_check = false; // Don't allow to create top level TLDs
|
|
|
+$dns_third_level_check = false;
|
|
|
+// Timezone settings
|
|
|
+// See <http://www.php.net/manual/en/timezones.php> for help.
|
|
|
+//$timezone = 'UTC';
|
|
|
+// Logging settings
|
|
|
+// Syslog usage - writes authentication attempts to syslog
|
|
|
+// This facility could be used in combination with fail2ban to
|
|
|
+// ban IPs with break-in attempts
|
|
|
+$syslog_use = false;
|
|
|
+$syslog_ident = 'poweradmin';
|
|
|
+// On Windows usually only LOG_USER is available
|
|
|
+$syslog_facility = LOG_USER;
|
|
|
+
|
|
|
+// PowerDNSSEC settings
|
|
|
+$pdnssec_use = false;
|
|
|
+$pdnssec_command = '/usr/bin/pdnssec';
|
|
|
+
|
|
|
+// LDAP settings
|
|
|
+$ldap_use = false;
|
|
|
+$ldap_debug = false;
|
|
|
+$ldap_uri = 'ldap://domaincontroller.example.com';
|
|
|
+$ldap_basedn = 'OU=Users,DC=example,DC=com';
|
|
|
+$ldap_binddn = 'GROUP\lookupuser';
|
|
|
+$ldap_bindpw = 'some_password';
|
|
|
+$ldap_user_attribute = 'sAMAccountName';
|
|
|
+$ldap_proto = 3;
|