Your IP : 3.145.107.223


Current Path : /home/lentoinv/test.lentoria.com/vendor/ankitpokhrel/tus-php/src/Config/
Upload File :
Current File : //home/lentoinv/test.lentoria.com/vendor/ankitpokhrel/tus-php/src/Config/server.php

<?php

return [

    /**
     * Redis connection parameters.
     */
    'redis' => [
        'host' => getenv('REDIS_HOST') !== false ? getenv('REDIS_HOST') : '127.0.0.1',
        'port' => getenv('REDIS_PORT') !== false ? getenv('REDIS_PORT') : '6379',
        'database' => getenv('REDIS_DB') !== false ? getenv('REDIS_DB') : 0,
    ],

    /**
     * File cache configs.
     */
    'file' => [
        'dir' => \TusPhp\Config::getCacheHome() . DIRECTORY_SEPARATOR . '.cache' . DIRECTORY_SEPARATOR,
        'name' => 'tus_php.server.cache',
    ],
];

?>