Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
UserAdminV2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
UserAdminV2
Commits
3ade971b
Commit
3ade971b
authored
Aug 24, 2014
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add filesystem configuration.
parent
d6719eb5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
69 additions
and
0 deletions
+69
-0
config/filesystems.php
+69
-0
No files found.
config/filesystems.php
0 → 100644
View file @
3ade971b
<?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", "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 bounc as the Cloud disk implementation in the container.
|
*/
'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.
|
*/
'disks'
=>
[
'local'
=>
[
'driver'
=>
'local'
,
'root'
=>
base_path
(),
],
's3'
=>
[
'driver'
=>
's3'
,
'key'
=>
'your-key'
,
'secret'
=>
'your-secret'
,
'bucket'
=>
'your-bucket'
,
],
'rackspace'
=>
[
'driver'
=>
'rackspace'
,
'username'
=>
'your-username'
,
'key'
=>
'your-key'
,
'container'
=>
'your-container'
,
'endpoint'
=>
'https://identity.api.rackspacecloud.com/v2.0/'
,
'region'
=>
'IAD'
,
],
],
];
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment