4 * Queue configuration options.
6 * Changes to these config files are not supported by BookStack and may break upon updates.
7 * Configuration should be altered via the `.env` file or environment variables.
8 * Do not edit this file unless you're happy to maintain any changes yourself.
13 // Default driver to use for the queue
14 // Options: null, sync, redis
15 'default' => env('QUEUE_CONNECTION', 'sync'),
17 // Queue connection configuration
26 'driver' => 'database',
34 'connection' => 'default',
35 'queue' => env('REDIS_QUEUE', 'default'),
42 // Failed queue job logging
44 'database' => 'mysql', 'table' => 'failed_jobs',