mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
48 lines
1.1 KiB
PHP
48 lines
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Queue configuration options.
|
|
*
|
|
* Changes to these config files are not supported by BookStack and may break upon updates.
|
|
* Configuration should be altered via the `.env` file or environment variables.
|
|
* Do not edit this file unless you're happy to maintain any changes yourself.
|
|
*/
|
|
|
|
return [
|
|
|
|
// Default driver to use for the queue
|
|
// Options: null, sync, redis
|
|
'default' => env('QUEUE_CONNECTION', 'sync'),
|
|
|
|
// Queue connection configuration
|
|
'connections' => [
|
|
|
|
|
|
'sync' => [
|
|
'driver' => 'sync',
|
|
],
|
|
|
|
'database' => [
|
|
'driver' => 'database',
|
|
'table' => 'jobs',
|
|
'queue' => 'default',
|
|
'retry_after' => 90,
|
|
],
|
|
|
|
'redis' => [
|
|
'driver' => 'redis',
|
|
'connection' => 'default',
|
|
'queue' => env('REDIS_QUEUE', 'default'),
|
|
'retry_after' => 90,
|
|
'block_for' => null,
|
|
],
|
|
|
|
],
|
|
|
|
// Failed queue job logging
|
|
'failed' => [
|
|
'database' => 'mysql', 'table' => 'failed_jobs',
|
|
],
|
|
|
|
];
|