mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Add option for users to change password hashing algorithm in their .env file
This commit is contained in:
@@ -37,6 +37,7 @@ APP_URL=
|
||||
APP_TZ=
|
||||
APP_KEY=
|
||||
LOG_CHANNEL=stack
|
||||
PASSWORD_HASH=argon
|
||||
|
||||
BROADCAST_DRIVER=log
|
||||
CACHE_DRIVER=file
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
2018-12-28 DariusIII
|
||||
* Chg: Add option for users to change password hashing algorithm in their .env file
|
||||
* Chg: Add new line to end of messages for found movie names from sources used
|
||||
* Chg: Update voku/simple_html_dom to version 4.1.10
|
||||
* Chg: Update voku/simple_html_dom to version 4.1.8
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ return [
|
||||
| Supported: "bcrypt", "argon", "argon2id"
|
||||
|
|
||||
*/
|
||||
'driver' => 'argon',
|
||||
'driver' => env('PASSWORD_HASH', 'argon'),
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Bcrypt Options
|
||||
|
||||
Reference in New Issue
Block a user