Files
Scheduler/bootstrap/app.php
oskarb 6a58cae34b
All checks were successful
Deploy App / build-and-deploy (push) Successful in 2m7s
Update bootstrap/app.php
2025-08-31 07:31:28 +02:00

21 lines
582 B
PHP

<?php
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
return Application::configure(basePath: dirname(__DIR__))
->withRouting(
web: __DIR__.'/../routes/web.php',
commands: __DIR__.'/../routes/console.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware) {
$middleware->trustProxies(at: [
'192.168.0.99',
]);
})
->withExceptions(function (Exceptions $exceptions) {
//
})->create();