Skip to content
Snippets Groups Projects

Update dependency cweagans/composer-patches to v1.7.3

Merged renovate requested to merge renovate/cweagans-composer-patches-1.x into master
Compare and Show latest version
3 files
+ 100
66
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 14
1
@@ -109,6 +109,12 @@ define('SMTP_FROM', 'noreply@autistici.org');
define('SMTP_NAME', 'NoBlogs');
define('SMTP_DEBUG', 0);
/* Set the cookie hash once and for all. Avoids one SQL
* lookup on every request. This is just md5(https://noblogs.org/)
* to match the value that Wordpress would compute itself.
*/
define('COOKIEHASH', '7d12c307721c1cbe9412c639209d72aa');
/**#@+
* Authentication Unique Keys and Salts.
*
@@ -162,9 +168,16 @@ define('NOSPAM_API_URL', 'http://nospam.investici.org:9001');
* Memcache servers for Wordpress object caching.
*/
$memcached_servers = array(
// Cache most things locally.
'default' => array(
'127.0.0.1:7108'
)
),
// User metadata (including session ticket info) needs to be global.
// See issue #114.
'userlogins' => $noblogs_config['memcached'],
'usermeta' => $noblogs_config['memcached'],
'user_meta' => $noblogs_config['memcached'],
);
/*
Loading