diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-07-30 09:10:04 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-07-30 09:10:04 +0200 |
commit | 71ee565dfc5b40bee5ed8f66d75b4ff9f78a3976 (patch) | |
tree | 4fc8cf72c8a480f577e98fb49a6b97de03642358 /config | |
parent | 5f8d59c054e1d69ce23ee00ac836195b795e5289 (diff) |
Support connections to memcached socket file (#1488577)
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 7c22b8fd3..16557bd20 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -244,8 +244,8 @@ $rcmail_config['session_name'] = null; $rcmail_config['session_storage'] = 'db'; // Use these hosts for accessing memcached -// Define any number of hosts in the form hostname:port -$rcmail_config['memcache_hosts'] = null; // e.g. array( 'localhost:11211', '192.168.1.12:11211' ); +// Define any number of hosts in the form of hostname:port or unix:///path/to/socket.file +$rcmail_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 $rcmail_config['ip_check'] = false; |