Rack documentation says that
File servers support X-Cascade header
rack-mount says that
Rack::Mount supports Rack’s +X-Cascade+ convention
What is X-Cascade ? I could not find any documentation on X-Cascade.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The server will set the X-Cascade header to “pass” to continue to try other routes. This allows for multiple routes to be nested/stacked.
The general purpose of this is to pass the request on to other middlewares to handle the request if that specific handler doesn’t handle it.