mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-12 16:44:08 -08:00
Set base path for storage default on local disk
This commit is contained in:
parent
054de06522
commit
068ae5805b
|
@ -54,7 +54,7 @@ return [
|
||||||
|
|
||||||
'local' => [
|
'local' => [
|
||||||
'driver' => 'local',
|
'driver' => 'local',
|
||||||
'root' => storage_path('app'),
|
'root' => base_path('/'),
|
||||||
],
|
],
|
||||||
|
|
||||||
'ftp' => [
|
'ftp' => [
|
||||||
|
@ -85,7 +85,7 @@ return [
|
||||||
'secret' => env('AWS_SECRET', null),
|
'secret' => env('AWS_SECRET', null),
|
||||||
'region' => env('AWS_REGION', null),
|
'region' => env('AWS_REGION', null),
|
||||||
'bucket' => env('AWS_BUCKET', null),
|
'bucket' => env('AWS_BUCKET', null),
|
||||||
|
|
||||||
'cache' => [
|
'cache' => [
|
||||||
'store' => env('AWS_CACHE_STORE', 'memcached'),
|
'store' => env('AWS_CACHE_STORE', 'memcached'),
|
||||||
'expire' => env('AWS_CACHE_EXPIRES', 600),
|
'expire' => env('AWS_CACHE_EXPIRES', 600),
|
||||||
|
|
Loading…
Reference in a new issue