James Cole
2026-02-15 06:18:52 +01:00
parent 642deefba5
commit ac8bcb786b
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -93,7 +93,7 @@ $app = Application::configure(basePath: dirname(__DIR__))
->withRouting(
web : __DIR__ . '/../routes/web.php',
commands: __DIR__ . '/../routes/console.php',
health : '/up',
health : '/health',
)
->withMiddleware(function (Middleware $middleware): void {
// overrule the standard middleware
@@ -123,7 +123,7 @@ $app = Application::configure(basePath: dirname(__DIR__))
]
);
// new group?
$middleware->appendToGroup('binders-only',
$middleware->group('binders-only',
[
Installer::class,
EncryptCookies::class,
+1 -1
View File
@@ -84,7 +84,7 @@ Route::group(
['middleware' => 'binders-only', 'namespace' => 'FireflyIII\Http\Controllers\System'],
static function (): void {
// Route::get('offline', static fn () => view('errors.offline'));
Route::get('health', ['uses' => 'HealthcheckController@check', 'as' => 'healthcheck']);
// Route::get('health', ['uses' => 'HealthcheckController@check', 'as' => 'healthcheck']);
}
);