/home/techb158/ileadtechnology.com/config
NameSizeModeActions
laravolt/-0755rm
app.php170370644editdlrm
auth.php32540644editdlrm
backup.php78550644editdlrm
broadcasting.php16040644editdlrm
cache.php26870644editdlrm
cookie-consent.php4300644editdlrm
cors.php15910644editdlrm
database.php46440644editdlrm
easynav.php6700644editdlrm
filesystems.php21330644editdlrm
hashing.php15710644editdlrm
image-optimizer.php23100644editdlrm
laraskrill.php6000644editdlrm
laravel-share.php15190644editdlrm
logging.php26570644editdlrm
mail.php46890644editdlrm
paypal.php3670644editdlrm
paystack.php7260644editdlrm
payu.php30510644editdlrm
pdf.php11390644editdlrm
query-builder.php6780644editdlrm
queue.php26360644editdlrm
rave.php12710644editdlrm
seotools.php23230644editdlrm
services.php31870644editdlrm
session.php69310644editdlrm
sitemap.php15500644editdlrm
sslcommerz.php10920644editdlrm
sweetalert.php59270644editdlrm
translatable.php1520644editdlrm
view.php10530644editdlrm
vimeo.php20030644editdlrm
youtube.php4360644editdlrm
Edit: /home/techb158/ileadtechnology.com/config/queue.php (2636B)
env('QUEUE_CONNECTION', 'sync'), /* |-------------------------------------------------------------------------- | Queue Connections |-------------------------------------------------------------------------- | | Here you may configure the connection information for each server that | is used by your application. A default configuration has been added | for each back-end shipped with Laravel. You are free to add more. | | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" | */ 'connections' => [ 'sync' => [ 'driver' => 'sync', ], 'database' => [ 'driver' => 'database', 'table' => 'jobs', 'queue' => 'default', 'retry_after' => 90, ], 'beanstalkd' => [ 'driver' => 'beanstalkd', 'host' => 'localhost', 'queue' => 'default', 'retry_after' => 90, ], 'sqs' => [ 'driver' => 'sqs', 'key' => env('SQS_KEY', 'your-public-key'), 'secret' => env('SQS_SECRET', 'your-secret-key'), 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), 'queue' => env('SQS_QUEUE', 'your-queue-name'), 'region' => env('SQS_REGION', 'us-east-1'), ], 'redis' => [ 'driver' => 'redis', 'connection' => 'default', 'queue' => env('REDIS_QUEUE', 'default'), 'retry_after' => 90, 'block_for' => null, ], ], /* |-------------------------------------------------------------------------- | Failed Queue Jobs |-------------------------------------------------------------------------- | | These options configure the behavior of failed queue job logging so you | can control which database and table are used to store the jobs that | have failed. You may change them to any database / table you wish. | */ 'failed' => [ 'database' => env('DB_CONNECTION', 'mysql'), 'table' => 'failed_jobs', ], ];