🔐 Only authenticated users can access your protected services.
⚡ Authentication is enforced at the gateway level, reducing security overhead for your backend.
🔍 What are the Benefits of Basic Authentication?
HTTP Basic Authentication is a simple yet effective way to restrict access to sensitive services without requiring complex identity providers or OAuth-based authentication systems. Key Benefits:- Securing development or staging environments from public access.
- Adding a lightweight authentication layer when no other auth system is available.
- Protecting internal admin panels, dashboards, or API endpoints.
- Protect temporary or short-lived services without setting up an OAuth provider.
Basic Authentication Examples
The following examples show how to set up an endpoint that accepts requests that contain basic auth credentials for eitheruser:password1
or admin:password2
.
All other requests will be denied with a 401
response code.
Check out the basic auth traffic policy action page for more details about how it functions and the parameters it accepts.