# Authentication

## Authentication

Use normal Hono middleware to authenticate requests before they reach deployed
apps:

```ts
server.use("/apps/*", authMiddleware);
server.route("/apps", appsRouter);
```
