'DummyProvider', 'DummyProvider' => [], 'RedisProvider' => [ // Type can be 'tcp' or 'unix' 'socket_type' => Core::getEnv('OBJECTSTORAGE_REDIS_SOCKET_TYPE', 'tcp'), // If socket_type == 'unix', set the socket here 'socket' => Core::getEnv('OBJECTSTORAGE_REDIS_SOCKET', null), // If socket_type == 'tcp', set the host here 'host' => Core::getEnv('OBJECTSTORAGE_REDIS_HOST', '127.0.0.1'), // And some standard settings 'port' => Core::getEnv('OBJECTSTORAGE_REDIS_PORT', 6379), 'password' => Core::getEnv('OBJECTSTORAGE_REDIS_PASSWORD', null), 'timeout' => Core::getEnv('OBJECTSTORAGE_REDIS_TIMEOUT', 0), 'db_index' => Core::getEnv('OBJECTSTORAGE_REDIS_DBINDEX', 0), ], 'FileProvider' => [ // The directory where objects get stored by the FileProvider 'storage_directory' => Core::getEnv('OBJECTSTORAGE_FILE_DIRECTORY', Core::$tempDir) ] ];