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: sync, database, redis
15 'default' => env('QUEUE_CONNECTION', 'sync'),
17 // Queue connection configuration
25 'driver' => 'database',
29 'after_commit' => false,
34 'connection' => 'default',
35 'queue' => env('REDIS_QUEUE', 'default'),
38 'after_commit' => false,
43 // Failed queue job logging
45 'driver' => 'database-uuids',
46 'database' => 'mysql',
47 'table' => 'failed_jobs',