mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
28 lines
830 B
PHP
28 lines
830 B
PHP
![]() |
<?php
|
||
|
|
||
|
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')),
|
||
|
|
||
|
];
|