Files
librenms-librenms/config/librenms.php
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
2.1 KiB
PHP
Raw Normal View History

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.
*/
2023-03-13 22:32:22 +01: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'),
/*
|--------------------------------------------------------------------------
| 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')),
/*
|--------------------------------------------------------------------------
| Install
|--------------------------------------------------------------------------
|
| This value sets if the install process needs to be run.
| You may also specify which install steps to present with a comma separated list.
*/
'install' => env('INSTALL', false),
/*
|--------------------------------------------------------------------------
| NODE ID
|--------------------------------------------------------------------------
|
| Unique value to identify this node. Primarily used for distributed polling.
*/
'node_id' => env('NODE_ID'),
2024-09-09 11:48:07 -05:00
/*
|--------------------------------------------------------------------------
| Config Cache TTL
|--------------------------------------------------------------------------
|
| Amount of seconds to allow the config to be cached. 0 means no cache.
*/
'config_cache_ttl' => env('CONFIG_CACHE_TTL', 0),
2023-03-13 22:32:22 +01:00
];