mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 21:49:01 +01:00
50 lines
1.1 KiB
PHP
50 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Cachet Timezone
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The timezone Cachet uses for converting timezones on saving.
|
|
|
|
|
*/
|
|
|
|
'timezone' => 'UTC',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Docker
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Is the installation running under a Docker container?
|
|
|
|
|
*/
|
|
|
|
'is_docker' => env('DOCKER', false),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Beacon
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Has the installation agreed to sending us Beacon data?
|
|
|
|
|
| Default: true
|
|
|
|
|
*/
|
|
|
|
'beacon' => env('CACHET_BEACON', true),
|
|
|
|
];
|