| | |
| | | // For possible values see installer or http://php.net/manual/en/function.openlog.php |
| | | $config['syslog_facility'] = LOG_USER; |
| | | |
| | | // Activate this option if logs should be written to per-user directories. |
| | | // Data will only be logged if a directry <log_dir>/<username>/ exists and is writable. |
| | | $config['per_user_logging'] = false; |
| | | |
| | | // Log sent messages to <log_dir>/sendmail or to syslog |
| | | $config['smtp_log'] = true; |
| | | |
| | |
| | | // timeout > 0 causes connection errors (https://bugs.php.net/bug.php?id=54511) |
| | | $config['smtp_timeout'] = 0; |
| | | |
| | | // SMTP socket context options |
| | | // See http://php.net/manual/en/context.ssl.php |
| | | // The example below enables server certificate validation, and |
| | | // requires 'smtp_timeout' to be non zero. |
| | | // $config['smtp_conn_options'] = array( |
| | | // 'ssl' => array( |
| | | // 'verify_peer' => true, |
| | | // 'verify_depth => 3, |
| | | // 'cafile' => '/etc/openssl/certs/ca.crt', |
| | | // ), |
| | | // ); |
| | | $config['smtp_conn_options'] = null; |
| | | |
| | | // ---------------------------------- |
| | | // LDAP |
| | | // ---------------------------------- |
| | |
| | | // Define any number of hosts in the form of hostname:port or unix:///path/to/socket.file |
| | | $config['memcache_hosts'] = null; // e.g. array( 'localhost:11211', '192.168.1.12:11211', 'unix:///var/tmp/memcached.sock' ); |
| | | |
| | | // check client IP in session athorization |
| | | // check client IP in session authorization |
| | | $config['ip_check'] = false; |
| | | |
| | | // List of trusted proxies |
| | | // X_FORWARDED_* and X_REAL_IP headers are only accepted from these IPs |
| | | $config['proxy_whitelist'] = array(); |
| | | |
| | | // check referer of incoming requests |
| | | $config['referer_check'] = false; |
| | | |