mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Device group based access * Use Permissions class to resolve permissions Also give port access based on device access * Convert more pages to use Permissions class * shorten config setting name use Eloquent relationships in several places alphabetize config_definitions.json * Change Models and Permissions * Clean up ajax_search LIMIT sql * Convert more pages to use Permissions class Co-authored-by: Tony Murray <murraytony@gmail.com>
36 lines
1.1 KiB
PHP
36 lines
1.1 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 [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Group
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 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')),
|
|
|
|
];
|