Commit 17b199b6 authored by Taylor Otwell's avatar Taylor Otwell

Add storage path configuration.

parent 25a84bc0
...@@ -32,7 +32,7 @@ ClassLoader::addDirectories(array( ...@@ -32,7 +32,7 @@ ClassLoader::addDirectories(array(
$logFile = 'log-'.php_sapi_name().'.txt'; $logFile = 'log-'.php_sapi_name().'.txt';
Log::useDailyFiles(__DIR__.'/../storage/logs/'.$logFile); Log::useDailyFiles(storage_path().'/logs/'.$logFile);
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
......
...@@ -41,4 +41,17 @@ return array( ...@@ -41,4 +41,17 @@ return array(
'base' => __DIR__.'/..', 'base' => __DIR__.'/..',
/*
|--------------------------------------------------------------------------
| Storage Path
|--------------------------------------------------------------------------
|
| The storage path is used by Laravel to store cached Blade views, logs
| and other pieces of information. You may modify the path here when
| you want to change the location of this directory for your apps.
|
*/
'storage' => __DIR__.'/../app/storage',
); );
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment