mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Fix logging Also mark all the files in config as non-editable * Set the proper default logging levels
61 lines
1.8 KiB
PHP
61 lines
1.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
| !!!! DO NOT EDIT THIS FILE !!!!
|
|
|
|
|
| You can change settings by setting them in the environment or .env
|
|
| If there is something you need to change, but is not available as an environment setting,
|
|
| request an environment variable to be created upstream or send a pull request.
|
|
*/
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default Hash Driver
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This option controls the default hash driver that will be used to hash
|
|
| passwords for your application. By default, the bcrypt algorithm is
|
|
| used; however, you remain free to modify this option if you wish.
|
|
|
|
|
| Supported: "bcrypt", "argon", "argon2id"
|
|
|
|
|
*/
|
|
|
|
'driver' => 'bcrypt',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Bcrypt Options
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may specify the configuration options that should be used when
|
|
| passwords are hashed using the Bcrypt algorithm. This will allow you
|
|
| to control the amount of time it takes to hash the given password.
|
|
|
|
|
*/
|
|
|
|
'bcrypt' => [
|
|
'rounds' => env('BCRYPT_ROUNDS', 10),
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Argon Options
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may specify the configuration options that should be used when
|
|
| passwords are hashed using the Argon algorithm. These will allow you
|
|
| to control the amount of time it takes to hash the given password.
|
|
|
|
|
*/
|
|
|
|
'argon' => [
|
|
'memory' => 1024,
|
|
'threads' => 2,
|
|
'time' => 2,
|
|
],
|
|
|
|
];
|