12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php
-
- /**
- * Sample configuration file with default values
- *
- * @package Poweradmin
- * @copyright 2007-2010 Rejo Zenger <rejo@zenger.nl>
- * @copyright 2010-2017 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_port = '';
- $db_user = '';
- $db_pass = '';
- $db_name = '';
- $db_type = '';
- //$db_charset = 'latin1'; // or utf8
- //$db_file = ''; # used only for SQLite, provide full path to database file
- //$db_debug = false; # show all SQL queries
- //$db_ssl_ca = '';
-
- // Security settings
- // This should be changed upon install
- $session_key = 'p0w3r4dm1n';
- $password_encryption = 'md5'; // md5, md5salt or bcrypt
- //$password_encryption_cost = 12; // needed for bcrypt
-
- // 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;
|