Blame view

api/config/kea.php 572 Bytes
ff996c1b2   Chris Bellas   Changed env calls...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <?php
  
  return [
  
      'auth_enabled' => env('AUTH_ENABLED', false),
  
      'kibana' => [
          'url' => env('KIBANA_URL', null),
          'port' => env('KIBANA_PORT', null),
          'ceptd_params' => env('CEPTD_KIBANA_PARAMS', null),
      ],
  
      'grafana' => [
          'url' => env('GRAFANA_URL', null),
          'port' => env('GRAFANA_PORT', null),
          'od_params' => env('OD_GRAFANA_PARAMS', null),
          'mltd_params' => env('MLTD_GRAFANA_PARAMS', null),
      ],
5a67cd764   Thanasis Naskos   updating the envi...
19
20
      'remote_server' => env('RSYSLOG_SERVER', null),
      'remote_port' => env('RSYSLOG_PORT', null),
ff996c1b2   Chris Bellas   Changed env calls...
21
  ];