@execute
Execution pipeline that is executed for
all requests. Accepting from this pipeline allows execution to continue to
request-type-specific pipelines (@authentication, @authorization, or
@accounting). Rejecting from this pipeline will reject the request immediately.
Note: The
@prefix is required for pipeline blocks. The legacy syntax without@(e.g.,execute {}) is deprecated and emits warnings. Use@execute {}for new configurations.
See also
- Execution context - Available variables
- Actions - Available actions
- Pipeline directives - Control flow
Example
@execute {
backend "users";
accept;
}
Navigation