Skip to content

Commit 2b7a198

Browse files
committed
Update health endpoint path in config
Changed the default health endpoint path from '/api/health' to '/health' in microservice.php config to reflect new routing requirements.
1 parent f7ea65c commit 2b7a198

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/config/microservice.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,12 @@
121121
| Health Endpoint
122122
|--------------------------------------------------------------------------
123123
|
124-
| Enable or disable registration of the default /api/health route.
124+
| Enable or disable registration of the default /health route.
125125
|
126126
*/
127127
'health' => [
128128
'enabled' => env('HEALTH_ENDPOINT_ENABLED', true),
129-
'path' => '/api/health',
129+
'path' => '/health',
130130
],
131131

132132
/*

0 commit comments

Comments
 (0)