Commit b1dc129a authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #3132 from winglian/develop

use APP_KEY from environment if available for the secret key
parents 83a5602d 858bf036
...@@ -78,7 +78,7 @@ return [ ...@@ -78,7 +78,7 @@ return [
| |
*/ */
'key' => 'YourSecretKey!!!', 'key' => getenv('APP_KEY') ?: 'YourSecretKey!!!',
'cipher' => MCRYPT_RIJNDAEL_128, 'cipher' => MCRYPT_RIJNDAEL_128,
......
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