Files
goma-gateway/docs/middleware/intro.md
2024-11-09 15:06:09 +01:00

601 B

title, layout, parent, nav_order
title layout parent nav_order
Intro default Middleware 1

Middlewares

Middleware is a function executed before (or after) the route callback.

This is a great way to add API authentication checks, or to validate that the user has permission to access the route.

With Goma you can create your middleware based on the type you want and apply it on your routes

Goma Gateway supports :

  • Authentication middleware
    • JWT client authorization based on the result of a request
    • Basic-Auth
    • OAuth
  • Rate limiting middleware
    • In-Memory client IP based
  • Access middleware