dump Action
The dump
action terminates the request processing and dumps out (intermediate) data to the client.
Syntax
in="..."
defines the input location (optional, default isfit://request/content
)minify="true|false"
controls JS/CSS minification (optional, default istrue
)mime="..."
sets the HTTP header fieldContent-Type
to the given value (optional, no default)status="..."
sets the HTTP status code to the given value (optional). If nostatus
attribute is set, the HTTP status will remain unchanged. Ifstatus
has an empty value (e.g.status=""
), the HTTP status code is set to500
.
Usage
Before sending out the data specified in in
, the dump
action makes the following modifications:
The meta data of
in
is used to determine theContent-Type
headerNew cookies received from upstream servers are sent
The following modifications are applied to the content:
remaining
fit:
URIs are stripped or translatedJavaScript and CSS content is minified, if not disabled
Examples
The action is handy in debugging situations to terminate the flow at a certain position. In this example we dump the main content after applying regular expressions but before parsing the content:
Last updated