/home/sharedstore/public_html/shop.sharedstore.ma/api.shop.sharedstore.ma/config
NameSizeModeActions
app.php78520664editdlrm
auth.php38970664editdlrm
broadcasting.php21470664editdlrm
cache.php33370664editdlrm
cors.php8650664editdlrm
database.php52890664editdlrm
filesystems.php23700664editdlrm
hashing.php16240664editdlrm
logging.php41730664editdlrm
mail.php40420664editdlrm
queue.php34470664editdlrm
sanctum.php29630664editdlrm
services.php9790664editdlrm
session.php74940664editdlrm
view.php10530664editdlrm
Edit: /home/sharedstore/public_html/shop.sharedstore.ma/api.shop.sharedstore.ma/config/filesystems.php (2370B)
env('FILESYSTEM_DISK', 'local'), /* |-------------------------------------------------------------------------- | 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 set up for each driver as an example of the required values. | | Supported Drivers: "local", "ftp", "sftp", "s3" | */ 'disks' => [ 'local' => [ 'driver' => 'local', 'root' => storage_path('app'), 'throw' => false, ], 'public' => [ 'driver' => 'local', 'root' => storage_path('app/public'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', 'throw' => false, ], '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'), 'endpoint' => env('AWS_ENDPOINT'), 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 'throw' => false, ], ], /* |-------------------------------------------------------------------------- | Symbolic Links |-------------------------------------------------------------------------- | | Here you may configure the symbolic links that will be created when the | `storage:link` Artisan command is executed. The array keys should be | the locations of the links and the values should be their targets. | */ 'links' => [ public_path('storage') => storage_path('app/public'), ], ];