'ldaps://ldap.example.com', "port" => 636, "basedn" => "dc=example,dc=com", "scope" => "one", // possible values: base, one, subtree "options" => array( // key/values pairs for ldap_set_option // http://php.net/manual/en/function.ldap-set-option.php LDAP_OPT_PROTOCOL_VERSION => 3 ), // Please note that php-ldap converts attributes to lowercase "userid_field" => "uidnumber", // This has to be a unique integer "username_field" => "uid" // This is the value the user supplies on the login form ); } // This is only used it the driver is set to fluxbb $config['auth_fluxbb'] = array( 'database' => 'fluxbb' ); // Possible values: production, development // "development" enables features like profiling and display of SQL queries. $config['environment'] = "production"; // This sets the download implementation. Possible values are php, nginx and lighttpd. // The nginx and lighttpd drivers make use of the server's sendfile feature. // // The lighttpd driver requires the following directive to be set in your fastcgi.server configuration: // "allow-x-send-file" => "enable" // See http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModFastCGI#X-Sendfile // // When using the nginx download driver you need to define an internal location // from which nginx will serve your uploads: // location ^~ /protected-uploads/ { // internal; // alias /; // } // See http://wiki.nginx.org/X-accel $config['download_driver'] = 'php'; $config['download_nginx_location'] = '/protected-uploads'; if (file_exists(FCPATH.'application/config/config-local.php')) { include FCPATH.'application/config/config-local.php'; } /* End of file config.php */ /* Location: ./application/config/config.php */