Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.216.236
150 Domain
8.1.34
signgwph
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
signgwph /
signaltechhcmsa.com /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
infyom
[ DIR ]
drwxr-xr-x
app.php
7.52
KB
-rw-r--r--
auth.php
3.93
KB
-rw-r--r--
broadcasting.php
2.1
KB
-rw-r--r--
cache.php
3.26
KB
-rw-r--r--
cors.php
846
B
-rw-r--r--
database.php
5.17
KB
-rw-r--r--
dompdf.php
11.2
KB
-rw-r--r--
excel.php
12.13
KB
-rw-r--r--
filesystems.php
2.4
KB
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
google-calendar.php
1.17
KB
-rw-r--r--
hashing.php
1.54
KB
-rw-r--r--
livewire-tables.php
2.88
KB
-rw-r--r--
livewire.php
6.08
KB
-rw-r--r--
localization-js.php
406
B
-rw-r--r--
log-viewer.php
6.78
KB
-rw-r--r--
logging.php
4.08
KB
-rw-r--r--
mail.php
3.72
KB
-rw-r--r--
payments.php
1.49
KB
-rw-r--r--
paypal.php
1.03
KB
-rw-r--r--
paystack.php
696
B
-rw-r--r--
permission.php
4.74
KB
-rw-r--r--
purifier.php
4.46
KB
-rw-r--r--
queue.php
2.84
KB
-rw-r--r--
services.php
1.46
KB
-rw-r--r--
session.php
6.86
KB
-rw-r--r--
view.php
1.03
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : queue.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Queue Connection Name |-------------------------------------------------------------------------- | | Laravel's queue API supports an assortment of back-ends via a single | API, giving you convenient access to each back-end using the same | syntax for every one. Here you may define a default connection. | */ 'default' => 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, 'after_commit' => false, ], 'beanstalkd' => [ 'driver' => 'beanstalkd', 'host' => 'localhost', 'queue' => 'default', 'retry_after' => 90, 'block_for' => 0, 'after_commit' => false, ], 'sqs' => [ 'driver' => 'sqs', 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), 'queue' => env('SQS_QUEUE', 'default'), 'suffix' => env('SQS_SUFFIX'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 'after_commit' => false, ], 'redis' => [ 'driver' => 'redis', 'connection' => 'default', 'queue' => env('REDIS_QUEUE', 'default'), 'retry_after' => 90, 'block_for' => null, 'after_commit' => false, ], ], /* |-------------------------------------------------------------------------- | 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' => [ 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), 'database' => env('DB_CONNECTION', 'mysql'), 'table' => 'failed_jobs', ], ];
Close