| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/httpd/html/lcmsmodels.com/public_html/config/ |
Upload File : |
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Filesystem Disk
|--------------------------------------------------------------------------
|
| Here you may specify the default filesystem disk that should be used
| by the framework. The "local" disk, as well as a variety of cloud
| based disks are available to your application. Just store away!
|
*/
'default' => env('FILESYSTEM_DRIVER', 'local'),
/*
|--------------------------------------------------------------------------
| Default Cloud Filesystem Disk
|--------------------------------------------------------------------------
|
| Many applications store files both locally and in the cloud. For this
| reason, you may specify a default "cloud" driver here. This driver
| will be bound as the Cloud disk implementation in the container.
|
*/
'cloud' => env('FILESYSTEM_CLOUD', 's3'),
/*
|--------------------------------------------------------------------------
| Filesystem Disks
|--------------------------------------------------------------------------
|
| Here you may configure as many filesystem "disks" as you wish, and you
| may even configure multiple disks of the same driver. Defaults have
| been setup for each driver as an example of the required options.
|
| Supported Drivers: "local", "ftp", "sftp", "s3", "rackspace"
|
*/
'disks' => [
'local' => [
'driver' => 'local',
'root' => public_path('uploads'),
'url' => env('APP_URL') . '/public/uploads',
],
'public' => [
'driver' => 'local',
'root' => public_path('uploads'),
'url' => env('APP_URL') . '/public/uploads',
'visibility' => 'public',
],
's3' => [
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
],
'digitalocean' => [
'driver' => 's3',
'key' => env('DOS_ACCESS_KEY_ID'),
'secret' => env('DOS_SECRET_ACCESS_KEY'),
'region' => env('DOS_DEFAULT_REGION'),
'bucket' => env('DOS_BUCKET'),
'endpoint' => 'https://'.env('DOS_DEFAULT_REGION').'.digitaloceanspaces.com',
],
'wasabi' => [
'driver' => 's3',
'key' => env('WAS_ACCESS_KEY_ID'),
'secret' => env('WAS_SECRET_ACCESS_KEY'),
'region' => env('WAS_DEFAULT_REGION'),
'bucket' => env('WAS_BUCKET'),
'endpoint' => 'https://s3.'.env('WAS_DEFAULT_REGION').'.wasabisys.com'
],
'backblaze' => [
'driver' => 'b2',
'accountId' => env('BACKBLAZE_ACCOUNT_ID'),
'applicationKey' => env('BACKBLAZE_APP_KEY'),
'bucketName' => env('BACKBLAZE_BUCKET')
],
'vultr' => [
'driver' => 's3',
'key'=> env('VULTR_ACCESS_KEY'),
'secret' => env('VULTR_SECRET_KEY'),
'region' => env('VULTR_REGION'),
'bucket' => env('VULTR_BUCKET'),
'endpoint' => env('VULTR_ENDPOINT'),
],
],
];