65 lines
2.5 KiB
PHP
65 lines
2.5 KiB
PHP
<?php
|
|
|
|
$debug = false;
|
|
$timezone = "Europe/Madrid";
|
|
$mrbs_admin = "Your Administrator";
|
|
$mrbs_admin_email = "admin_email@your.org";
|
|
$mrbs_company_logo = "vernatura-logo.png";
|
|
$mrbs_company = "";
|
|
//$mrbs_company_url = "https://www.verdnatura.es/";
|
|
$weekstarts = 1;
|
|
|
|
/*******************
|
|
* Database settings
|
|
******************/
|
|
// Which database system: "pgsql"=PostgreSQL, "mysql"=MySQL
|
|
$dbsys = getenv('DB_TYPE') ? getenv('DB_TYPE') : "mysql";
|
|
// Hostname of database server. For pgsql, can use "" instead of localhost
|
|
// to use Unix Domain Sockets instead of TCP/IP. For mysql "localhost"
|
|
// tells the system to use Unix Domain Sockets, and $db_port will be ignored;
|
|
// if you want to force TCP connection you can use "127.0.0.1".
|
|
$db_host = getenv('DB_HOST');
|
|
// If you need to use a non standard port for the database connection you
|
|
// can uncomment the following line and specify the port number
|
|
// $db_port = 1234;
|
|
// Database name:
|
|
$db_database = getenv('DB_DATABASE');
|
|
// Schema name. This only applies to PostgreSQL and is only necessary if you have more
|
|
// than one schema in your database and also you are using the same MRBS table names in
|
|
// multiple schemas.
|
|
//$db_schema = "public";
|
|
// Database login user name:
|
|
$db_login = getenv('DB_USER');
|
|
// Database login password:
|
|
$db_password = getenv('DB_PASS');
|
|
// Prefix for table names. This will allow multiple installations where only
|
|
// one database is available
|
|
$db_tbl_prefix = "mrbs_";
|
|
// Set $db_persist to TRUE to use PHP persistent (pooled) database connections. Note
|
|
// that persistent connections are not recommended unless your system suffers significant
|
|
// performance problems without them. They can cause problems with transactions and
|
|
// locks (see http://php.net/manual/en/features.persistent-connections.php) and although
|
|
// MRBS tries to avoid those problems, it is generally better not to use persistent
|
|
// connections if you can.
|
|
$db_persist = false;
|
|
|
|
$theme = "verdnatura";
|
|
|
|
$auth["type"] = "ldap";
|
|
|
|
$ldap_host = "ldap://ldap.verdnatura.es";
|
|
$ldap_v3 = true;
|
|
$ldap_tls = false;
|
|
$ldap_base_dn = "dc=verdnatura,dc=es";
|
|
$ldap_user_attrib = "uid";
|
|
$ldap_dn_search_attrib = "uid";
|
|
$ldap_dn_search_dn = "cn=mrbs,ou=admins,dc=verdnatura,dc=es";
|
|
$ldap_get_user_email = false;
|
|
$ldap_email_attrib = 'mail';
|
|
$ldap_name_attrib = 'cn';
|
|
$ldap_admin_group_dn = 'cn=sysadmin,ou=dnGroups,dc=verdnatura,dc=es';
|
|
$ldap_group_member_attrib = 'memberof';
|
|
$ldap_debug = true;
|
|
$ldap_debug_attributes = true;
|
|
|
|
$auth['deny_public_access'] = true; |