diff --git a/packages/pockethost/src/cli/commands/FirewallCommand/ServeCommand/firewall/server.ts b/packages/pockethost/src/cli/commands/FirewallCommand/ServeCommand/firewall/server.ts index 6412fd0f..0ef9b59d 100644 --- a/packages/pockethost/src/cli/commands/FirewallCommand/ServeCommand/firewall/server.ts +++ b/packages/pockethost/src/cli/commands/FirewallCommand/ServeCommand/firewall/server.ts @@ -42,7 +42,7 @@ export const firewall = async () => { app.use(cors()) app.use(enforce.HTTPS()) - app.get(`/_api/firewall/health`, (req, res, next) => { + app.get(`/api/firewall/health`, (req, res, next) => { dbg(`Health check`) res.json({ status: 'firewall ok' }) res.end()