����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 216.73.216.53 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/././gle.gltechlimited.com/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", "s3", "rackspace" | */ 'disks' => [ 'local' => [ 'driver' => 'local', 'root' => storage_path('app'), ], 'public' => [ 'driver' => 'local', 'root' => storage_path('app/public'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'movies_upload' => [ 'driver' => 'local', 'root' => public_path('movies_upload'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'movie_360' => [ 'driver' => 'local', 'root' => public_path('movies_upload/movie_360'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'movie_480' => [ 'driver' => 'local', 'root' => public_path('movies_upload/movie_480'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'movie_720' => [ 'driver' => 'local', 'root' => public_path('movies_upload/movie_720'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'movie_1080' => [ 'driver' => 'local', 'root' => public_path('movies_upload/movie_1080'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'tvshow_upload' => [ 'driver' => 'local', 'root' => public_path('tvshow_upload'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'tv_360' => [ 'driver' => 'local', 'root' => public_path('tvshow_upload/tv_360'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'tv_480' => [ 'driver' => 'local', 'root' => public_path('tvshow_upload/tv_480'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'tv_720' => [ 'driver' => 'local', 'root' => public_path('tvshow_upload/tv_720'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'tv_1080' => [ 'driver' => 'local', 'root' => public_path('tvshow_upload/tv_1080'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'director_image_path' => [ 'driver' => 'local', 'root' => public_path('images/directors'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'actor_image_path' => [ 'driver' => 'local', 'root' => public_path('images/actors'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'imdb_poster_movie' => [ 'driver' => 'local', 'root' => public_path('images/movies/thumbnails'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'imdb_poster_episode' => [ 'driver' => 'local', 'root' => public_path('images/tvseries/episodes'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'imdb_backdrop_movie' => [ 'driver' => 'local', 'root' => public_path('images/movies/posters'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'imdb_poster_tv_series' => [ 'driver' => 'local', 'root' => public_path('images/tvseries/thumbnails'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 'imdb_backdrop_tv_series' => [ 'driver' => 'local', 'root' => public_path('images/tvseries/posters'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 's3' => [ 'driver' => 's3', 'key' => env('key'), 'secret' => env('secret'), 'region' => env('region'), 'bucket' => env('bucket'), 'url' => env('url'), ], 'bunny' => [ 'driver' => 'bunny', 'storage_zone' => env('BUNNY_STORAGE_ZONE'), 'api_key' => env('BUNNY_API_KEY'), 'region' => env('BUNNY_REGION', \PlatformCommunity\Flysystem\BunnyCDN\BunnyCDNRegion::DEFAULT), 'pull_zone' => env('BUNNY_PULL_ZONE', ''), 'root' => '', ], 'wasabi' => [ 'driver' => 's3', 'key' => env('WASABI_ACCESS_KEY_ID'), 'secret' => env('WASABI_SECRET_ACCESS_KEY'), 'region' => env('WASABI_DEFAULT_REGION', 'eu-central-1'), 'bucket' => env('WASABI_BUCKET'), ], ], ];