Merge pull request #3132 from winglian/develop
use APP_KEY from environment if available for the secret key
This commit is contained in:
commit
b1dc129af5
|
@ -78,7 +78,7 @@
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'key' => 'YourSecretKey!!!',
|
'key' => getenv('APP_KEY') ?: 'YourSecretKey!!!',
|
||||||
|
|
||||||
'cipher' => MCRYPT_RIJNDAEL_128,
|
'cipher' => MCRYPT_RIJNDAEL_128,
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue