PHPDaemon\Servers\FastCGI\Pool::getConfigDefaults PHP Method

getConfigDefaults() protected method

Setting default config options Overriden from ConnectionPool::getConfigDefaults
protected getConfigDefaults ( ) : array | boolean
return array | boolean
    protected function getConfigDefaults()
    {
        return ['listen' => 'tcp://127.0.0.1,unix:///tmp/phpdaemon.fcgi.sock', 'port' => 9000, 'auto-read-body-file' => 1, 'allowed-clients' => '127.0.0.1', 'send-file' => 0, 'send-file-dir' => '/dev/shm', 'send-file-prefix' => 'fcgi-', 'send-file-onlybycommand' => 0, 'expose' => 1, 'keepalive' => new Time('0s'), 'chunksize' => new Size('8k'), 'defaultcharset' => 'utf-8', 'upload-max-size' => new Size(ini_get('upload_max_filesize'))];
    }