mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-21 13:23:04 +01:00
60 lines
1.5 KiB
PHP
60 lines
1.5 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Healthchecks enabled
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This option defines whether healthchecks integrations are enabled
|
|
|
|
|
*/
|
|
|
|
'healthchecks_enabled' => false,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Healthchecks UUID
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This option defines the UUID for healthchecks
|
|
|
|
|
*/
|
|
|
|
'healthchecks_uuid' => null,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Slack webhook
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This option defines the slack webhook url
|
|
|
|
|
*/
|
|
|
|
'slack_webhook' => null,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Telegram bot token
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This option defines the telegram bot token
|
|
|
|
|
*/
|
|
|
|
'telegram_bot_token' => null,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Telegram chat id
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This option defines the telegram chat id
|
|
|
|
|
*/
|
|
|
|
'telegram_chat_id' => null,
|
|
];
|