6 |--------------------------------------------------------------------------
8 |--------------------------------------------------------------------------
10 | The Laravel queue API supports a variety of back-ends via an unified
11 | API, giving you convenient access to each back-end using the same
12 | syntax for each one. Here you may set the default queue driver.
14 | Supported: "null", "sync", "database", "beanstalkd",
15 | "sqs", "iron", "redis"
19 'default' => env('QUEUE_DRIVER', 'sync'),
22 |--------------------------------------------------------------------------
24 |--------------------------------------------------------------------------
26 | Here you may configure the connection information for each server that
27 | is used by your application. A default configuration has been added
28 | for each back-end shipped with Laravel. You are free to add more.
39 'driver' => 'database',
46 'driver' => 'beanstalkd',
47 'host' => 'localhost',
54 'key' => 'your-public-key',
55 'secret' => 'your-secret-key',
56 'queue' => 'your-queue-url',
57 'region' => 'us-east-1',
62 'host' => 'mq-aws-us-east-1.iron.io',
63 'token' => 'your-token',
64 'project' => 'your-project-id',
65 'queue' => 'your-queue-name',
71 'connection' => 'default',
79 |--------------------------------------------------------------------------
81 |--------------------------------------------------------------------------
83 | These options configure the behavior of failed queue job logging so you
84 | can control which database and table are used to store the jobs that
85 | have failed. You may change them to any database / table you wish.
90 'database' => 'mysql', 'table' => 'failed_jobs',