123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?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 = 'POSTGRES_HOST';
- //$db_port = '';
- $db_user = 'POSTGRES_PASSWORD';
- $db_pass = 'POSTGRES_PASSWORD';
- $db_name = 'POSTGRES_DB';
- $db_type = 'pgsql';
- $db_charset = '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 = 'SESSION_KEY';
- $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_HOSTMASTER';
- $dns_ns1 = 'DNS_NS1';
- $dns_ttl = DNS_TTL;
- $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 = true;
- $pdnssec_command = '/usr/bin/pdnsutil';
-
- // 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;
|