1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/config/filesystems.php

89 lines
2.6 KiB
PHP
Raw Normal View History

2015-03-12 01:44:39 +01: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", "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.
|
*/
'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' => storage_path().'/app',
],
2016-05-17 10:45:14 +02:00
'logos' => [
'driver' => 'local',
'root' => env('LOGO_PATH', public_path().'/logo'),
],
2016-05-17 10:45:14 +02:00
'documents' => [
'driver' => 'local',
'root' => storage_path().'/documents',
],
2015-03-12 01:44:39 +01:00
's3' => [
'driver' => 's3',
'key' => env('S3_KEY', ''),
'secret' => env('S3_SECRET', ''),
2016-03-23 20:41:05 +01:00
'region' => env('S3_REGION', 'us-east-1'),
'bucket' => env('S3_BUCKET', ''),
2015-03-12 01:44:39 +01:00
],
'rackspace' => [
'driver' => 'rackspace',
'username' => env('RACKSPACE_USERNAME', ''),
'key' => env('RACKSPACE_KEY', ''),
'container' => env('RACKSPACE_CONTAINER', ''),
'endpoint' => env('RACKSPACE_ENDPOINT', 'https://identity.api.rackspacecloud.com/v2.0/'),
2016-03-23 20:41:05 +01:00
'region' => env('RACKSPACE_REGION', 'IAD'),
'url_type' => env('RACKSPACE_URL_TYPE', 'publicURL')
2015-03-12 01:44:39 +01:00
],
2016-05-17 10:45:14 +02:00
'gcs' => [
'driver' => 'gcs',
'service_account' => env('GCS_USERNAME', ''),
'service_account_certificate' => storage_path() . '/credentials.p12',
'service_account_certificate_password' => env('GCS_PASSWORD', ''),
'bucket' => env('GCS_BUCKET', 'cloud-storage-bucket'),
],
2015-03-12 01:44:39 +01:00
],
];