Initial commit to new repo
This commit is contained in:
parent
a267f9bfcc
commit
a5173c981b
292 changed files with 17472 additions and 0 deletions
40
config/laravel-medialibrary.php
Normal file
40
config/laravel-medialibrary.php
Normal file
|
@ -0,0 +1,40 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
* The filesystems on which to store added files and derived images by default. Choose
|
||||
* one or more of the filesystems you configured in app/config/filesystems.php
|
||||
*/
|
||||
'defaultFilesystem' => 'media',
|
||||
|
||||
/*
|
||||
* The maximum file size of an item in bytes. Adding a file
|
||||
* that is larger will result in an exception.
|
||||
*/
|
||||
'max_file_size' => 1024 * 1024 * 10,
|
||||
|
||||
/*
|
||||
* This queue will used to generate derived images.
|
||||
* Leave empty to use the default queue.
|
||||
*/
|
||||
'queue_name' => '',
|
||||
|
||||
/*
|
||||
* The class name of the media model to be used.
|
||||
*/
|
||||
'media_model' => Spatie\MediaLibrary\Media::class,
|
||||
|
||||
/*
|
||||
* When urls to files get generated this class will be called. Leave empty
|
||||
* if your files are stored locally above the site root or on s3.
|
||||
*/
|
||||
'custom_url_generator_class' => '',
|
||||
|
||||
's3' => [
|
||||
/*
|
||||
* The domain that should be prepended when generating urls.
|
||||
*/
|
||||
'domain' => env('AWS_S3_URL'),
|
||||
],
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue