| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/client-portal-laravel/releases/20260626120707/config/ |
Upload File : |
<?php
declare(strict_types=1);
/**
* Healthchecks.io ping URLs.
*
* These are read via config() not env() so they survive `php artisan
* config:cache` — after that command runs, env() outside of config files
* returns null (Laravel docs §"Configuration Caching"). Reading these
* values from routes/console.php and from queueable jobs MUST use
* config('healthchecks.*'), not env() directly.
*
* Names are not prefixed with the environment (e.g. no `STAGING_`)
* because the env-name distinction is already carried by the .env file
* itself, and the per-env gating happens at the call site
* (`if (app()->environment('staging'))` in routes/console.php).
*/
return [
/*
|--------------------------------------------------------------------------
| Scheduler heartbeat
|--------------------------------------------------------------------------
| Pinged every 10 minutes by routes/console.php on staging. Catches
| scheduler/cron breakage that smoke tests + uptime monitors won't
| notice. Configure the HC check with a 30-min grace window.
*/
'scheduler_url' => env('SCHEDULER_HC_URL', ''),
/*
|--------------------------------------------------------------------------
| Daily purge job
|--------------------------------------------------------------------------
| Pinged by StagingPurgeOldDataCommand each daily run. Ping on success;
| append /fail on failure so a silently broken purge alerts within the
| configured grace window. Configure the HC check with a ~25h grace.
*/
'purge_url' => env('PURGE_HC_URL', ''),
];