Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.189.3.134
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
app.php
9.02
KB
-rw-r--r--
2020-11-17 16:24
auth.php
3.71
KB
-rw-r--r--
2020-11-17 16:24
broadcasting.php
1.56
KB
-rw-r--r--
2020-11-17 16:24
cache.php
3.03
KB
-rw-r--r--
2020-11-17 16:24
cors.php
823
B
-rw-r--r--
2020-11-17 16:24
database.php
4.94
KB
-rw-r--r--
2020-11-17 16:24
filesystems.php
2.63
KB
-rw-r--r--
2020-11-17 16:24
flare.php
1.38
KB
-rw-r--r--
2021-02-02 18:22
fractal.php
1.3
KB
-rw-r--r--
2021-02-02 18:22
hashing.php
1.53
KB
-rw-r--r--
2020-11-17 16:24
ignition.php
4.35
KB
-rw-r--r--
2021-02-02 18:22
logging.php
2.83
KB
-rw-r--r--
2020-11-17 16:24
mail.php
3.29
KB
-rw-r--r--
2020-11-17 16:24
musonza_chat.php
1.37
KB
-rw-r--r--
2021-02-02 18:22
queue.php
2.7
KB
-rw-r--r--
2020-11-17 16:24
services.php
950
B
-rw-r--r--
2020-11-17 16:24
session.php
6.88
KB
-rw-r--r--
2020-11-17 16:24
tinker.php
1.47
KB
-rw-r--r--
2021-02-02 18:22
trustedproxy.php
1.67
KB
-rw-r--r--
2021-02-02 18:22
view.php
1.03
KB
-rw-r--r--
2020-11-17 16:24
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'), 'database' => env('DB_CONNECTION', 'mysql'), 'table' => 'failed_jobs', ], ];