Linux business57.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
Server IP : 199.188.201.191 & Your IP : 18.218.5.91
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
derozboy /
velxotano-group.pro /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
Plugins
[ DIR ]
drwxr-xr-x
2025-04-25 03:36
Reporters
[ DIR ]
drwxr-xr-x
2025-04-25 03:36
.htaccess
237
B
-r-xr-xr-x
2025-04-26 03:36
app.php
9.43
KB
-rw-r--r--
2021-09-17 20:42
auth.php
3.71
KB
-rw-r--r--
2021-05-03 14:33
broadcasting.php
1.56
KB
-rw-r--r--
2020-06-30 11:49
cache.php
3.03
KB
-rw-r--r--
2020-06-30 11:49
cors.php
823
B
-rw-r--r--
2020-06-30 11:49
database.php
5.31
KB
-rw-r--r--
2021-08-11 12:44
debugbar.php
7.86
KB
-rw-r--r--
2021-09-01 14:41
filesystems.php
2.63
KB
-rw-r--r--
2020-06-30 11:49
hashing.php
1.53
KB
-rw-r--r--
2020-06-30 11:49
logging.php
2.83
KB
-rw-r--r--
2020-06-30 11:49
queue.php
2.7
KB
-rw-r--r--
2020-06-30 11:49
recaptchav3.php
192
B
-rw-r--r--
2021-09-17 20:44
services.php
950
B
-rw-r--r--
2020-06-30 11:49
session.php
6.88
KB
-rw-r--r--
2020-06-30 11:49
wp-blog-header.php
2.73
KB
-r--r--r--
2025-04-22 01:18
wp-cron.php
2.73
KB
-rw-r--r--
2025-04-22 01:18
Save
Rename
<?php use Illuminate\Support\Str; return [ /* |-------------------------------------------------------------------------- | Default Cache Store |-------------------------------------------------------------------------- | | This option controls the default cache connection that gets used while | using this caching library. This connection is used when another is | not explicitly specified when executing a given caching function. | | Supported: "apc", "array", "database", "file", | "memcached", "redis", "dynamodb" | */ 'default' => env('CACHE_DRIVER', 'file'), /* |-------------------------------------------------------------------------- | Cache Stores |-------------------------------------------------------------------------- | | Here you may define all of the cache "stores" for your application as | well as their drivers. You may even define multiple stores for the | same cache driver to group types of items stored in your caches. | */ 'stores' => [ 'apc' => [ 'driver' => 'apc', ], 'array' => [ 'driver' => 'array', 'serialize' => false, ], 'database' => [ 'driver' => 'database', 'table' => 'cache', 'connection' => null, ], 'file' => [ 'driver' => 'file', 'path' => storage_path('framework/cache/data'), ], 'memcached' => [ 'driver' => 'memcached', 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), 'sasl' => [ env('MEMCACHED_USERNAME'), env('MEMCACHED_PASSWORD'), ], 'options' => [ // Memcached::OPT_CONNECT_TIMEOUT => 2000, ], 'servers' => [ [ 'host' => env('MEMCACHED_HOST', '127.0.0.1'), 'port' => env('MEMCACHED_PORT', 11211), 'weight' => 100, ], ], ], 'redis' => [ 'driver' => 'redis', 'connection' => 'cache', ], 'dynamodb' => [ 'driver' => 'dynamodb', 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), 'endpoint' => env('DYNAMODB_ENDPOINT'), ], ], /* |-------------------------------------------------------------------------- | Cache Key Prefix |-------------------------------------------------------------------------- | | When utilizing a RAM based store such as APC or Memcached, there might | be other applications utilizing the same cache. So, we'll specify a | value to get prefixed to all our keys so we can avoid collisions. | */ 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'), ];