blessing-skin-server/config/filesystems.php

68 lines
1.8 KiB
PHP
Raw Normal View History

2016-08-28 10:05:21 +08:00
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Filesystem Disk
|--------------------------------------------------------------------------
|
| Here you may specify the default filesystem disk that should be used
| by the framework. A "local" driver, as well as a variety of cloud
| based drivers are available for your choosing. Just store away!
|
| Supported: "local", "ftp", "s3", "rackspace"
|
*/
'default' => '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.
|
*/
2018-06-28 18:25:31 +08:00
'cloud' => 'testing',
2016-08-28 10:05:21 +08:00
/*
|--------------------------------------------------------------------------
| 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.
|
*/
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
],
'root' => [
'driver' => 'local',
'root' => base_path(),
],
2016-08-28 20:33:35 +08:00
'textures' => [
2019-02-27 23:44:50 +08:00
'driver' => env('FS_DRIVER', 'local'),
2016-08-28 20:33:35 +08:00
'root' => storage_path('textures'),
2016-08-29 14:25:24 +08:00
],
2017-11-17 14:00:29 +08:00
'testing' => [
'driver' => 'memory',
2017-11-17 14:00:29 +08:00
],
2016-08-28 10:05:21 +08:00
],
];