I would like my ordinary Rails error pages to be passed on to the user-agent. I can of course customize these pages using normal Rails techniques.
But if there's an internal passenger error (usually when passenger can't start the app at all), I would like to customize that page. Is there any way to do that?
If I (apache) set PassengerErrorOverride on, then I can configure the internal passenger error page on the apache side -- but I also lose all of my customized ordinary Rails error pages, I think.
Is there any way to keep my custom Rails error page bodies under normal operation, but still customize the internal Passenger fatal error screen somehow?
Thanks!