Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Platform
Commits
1a736fcf
Unverified
Commit
1a736fcf
authored
Jun 29, 2018
by
Nicolas Widart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updating configuration files laravel 5.6
parent
205e40a7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
21 deletions
+8
-21
app.php
config/app.php
+0
-15
filesystems.php
config/filesystems.php
+2
-1
queue.php
config/queue.php
+5
-4
services.php
config/services.php
+1
-1
No files found.
config/app.php
View file @
1a736fcf
...
@@ -124,21 +124,6 @@ return [
...
@@ -124,21 +124,6 @@ return [
'cipher'
=>
'AES-256-CBC'
,
'cipher'
=>
'AES-256-CBC'
,
/*
|--------------------------------------------------------------------------
| Logging Configuration
|--------------------------------------------------------------------------
|
| Here you may configure the log settings for your application. Out of
| the box, Laravel uses the Monolog PHP logging library. This gives
| you a variety of powerful log handlers / formatters to utilize.
|
| Available Settings: "single", "daily", "syslog", "errorlog"
|
*/
'log'
=>
env
(
'APP_LOG'
,
'single'
),
'log_level'
=>
env
(
'APP_LOG_LEVEL'
,
'debug'
),
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
| Autoloaded Service Providers
| Autoloaded Service Providers
...
...
config/filesystems.php
View file @
1a736fcf
...
@@ -31,7 +31,7 @@ return [
...
@@ -31,7 +31,7 @@ return [
| may even configure multiple disks of the same driver. Defaults have
| may even configure multiple disks of the same driver. Defaults have
| been setup for each driver as an example of the required options.
| been setup for each driver as an example of the required options.
|
|
| Supported Drivers: "local", "ftp", "s3", "rackspace"
| Supported Drivers: "local", "ftp", "s
ftp", "s
3", "rackspace"
|
|
*/
*/
'disks'
=>
[
'disks'
=>
[
...
@@ -69,6 +69,7 @@ return [
...
@@ -69,6 +69,7 @@ return [
'secret'
=>
env
(
'AWS_SECRET'
),
'secret'
=>
env
(
'AWS_SECRET'
),
'region'
=>
env
(
'AWS_REGION'
),
'region'
=>
env
(
'AWS_REGION'
),
'bucket'
=>
env
(
'AWS_BUCKET'
),
'bucket'
=>
env
(
'AWS_BUCKET'
),
'url'
=>
env
(
'AWS_URL'
),
],
],
],
],
];
];
config/queue.php
View file @
1a736fcf
...
@@ -3,14 +3,12 @@
...
@@ -3,14 +3,12 @@
return
[
return
[
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
| Default Queue
Driver
| Default Queue
Connection Name
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
|
|
| Laravel's queue API supports an assortment of back-ends via a single
| Laravel's queue API supports an assortment of back-ends via a single
| API, giving you convenient access to each back-end using the same
| API, giving you convenient access to each back-end using the same
| syntax for each one. Here you may set the default queue driver.
| syntax for every one. Here you may define a default connection.
|
| Supported: "sync", "database", "beanstalkd", "sqs", "redis", "null"
|
|
*/
*/
'default'
=>
env
(
'QUEUE_DRIVER'
,
'sync'
),
'default'
=>
env
(
'QUEUE_DRIVER'
,
'sync'
),
...
@@ -23,6 +21,8 @@ return [
...
@@ -23,6 +21,8 @@ return [
| is used by your application. A default configuration has been added
| is used by your application. A default configuration has been added
| for each back-end shipped with Laravel. You are free to add more.
| for each back-end shipped with Laravel. You are free to add more.
|
|
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
|
*/
*/
'connections'
=>
[
'connections'
=>
[
'sync'
=>
[
'sync'
=>
[
...
@@ -33,6 +33,7 @@ return [
...
@@ -33,6 +33,7 @@ return [
'table'
=>
'jobs'
,
'table'
=>
'jobs'
,
'queue'
=>
'default'
,
'queue'
=>
'default'
,
'retry_after'
=>
90
,
'retry_after'
=>
90
,
'block_for'
=>
null
,
],
],
'beanstalkd'
=>
[
'beanstalkd'
=>
[
'driver'
=>
'beanstalkd'
,
'driver'
=>
'beanstalkd'
,
...
...
config/services.php
View file @
1a736fcf
...
@@ -22,7 +22,7 @@ return [
...
@@ -22,7 +22,7 @@ return [
'ses'
=>
[
'ses'
=>
[
'key'
=>
env
(
'SES_KEY'
),
'key'
=>
env
(
'SES_KEY'
),
'secret'
=>
env
(
'SES_SECRET'
),
'secret'
=>
env
(
'SES_SECRET'
),
'region'
=>
'us-east-1'
,
'region'
=>
env
(
'SES_REGION'
,
'us-east-1'
)
,
],
],
'sparkpost'
=>
[
'sparkpost'
=>
[
...
...
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