2018-05-09 08:05:17 -05:00
|
|
|
<?php
|
|
|
|
|
|
2019-02-14 08:08:38 -06:00
|
|
|
/*
|
|
|
|
|
| !!!! 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-05-09 08:05:17 -05:00
|
|
|
return [
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| User
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
| This value is the user LibreNMS runs as. It is used to secure permissions
|
|
|
|
|
| and grant access to things needed. Defaults to librenms.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
'user' => env('LIBRENMS_USER', 'librenms'),
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| User
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
| This value is the group LibreNMS runs as. It is used to secure permissions
|
|
|
|
|
| and grant access to things needed. Defaults to the same as LIBRENMS_USER.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
'group' => env('LIBRENMS_GROUP', env('LIBRENMS_USER', 'librenms')),
|
|
|
|
|
|
|
|
|
|
];
|