# Middleware System URL: /docs/features/middleware/ Section: features -------------------------------------------------------------------------------- Middleware System Pounce provides ASGI3 middleware support at the server level, allowing you to transform requests and responses across your entire application. Full middleware documentation with examples → Configuration from pounce import ServerConfig config = ServerConfig( middleware=[ request_id_middleware, logging_middleware, auth_middleware, ] ) Common Use Cases CORS headers Request ID injection Authentication and authorization Request/response logging Custom header injection Rate limiting See the full middleware guide for detailed examples. -------------------------------------------------------------------------------- Metadata: - Word Count: 68 - Reading Time: 1 minutes