shkola/wp-content/mu-plugins/object-cache-bootstrap.php
2026-07-13 06:39:32 +00:00

22 lines
372 B
PHP

<?php
if ( ! defined( 'WP_REDIS_HOST' ) ) {
define(
'WP_REDIS_HOST',
getenv( 'WP_REDIS_HOST' ) ?: '127.0.0.1'
);
}
if ( ! defined( 'WP_REDIS_PORT' ) ) {
define(
'WP_REDIS_PORT',
( int ) ( getenv( 'WP_REDIS_PORT' ) ?: 6379 )
);
}
if ( ! defined( 'WP_REDIS_DATABASE' ) ) {
define(
'WP_REDIS_DATABASE',
( int ) ( getenv( 'WP_REDIS_DATABASE' ) ?: 0 )
);
}