Currently if there's a problem launching a Rails app on our server, users are taken to a Passenger error page with an error like "Ruby (Rack) application could not be started".

Is it possible to customize this error page and display something else so users of a live site don't see this?

I'm using nginx for the server.

Thanks

link|improve this question

Can you post your Nginx config? – Devin M Dec 1 '11 at 19:12
@DevinM - it's a generic rails app config. – stringo0 Dec 1 '11 at 20:32
feedback

1 Answer

up vote 2 down vote accepted

The users guide contains some good information on the various config options. There is an option to disable the friendly error pages which is what I think you may be seeing.

To disable the startup error message specify the following line in your config file:

passenger_friendly_error_pages off

You can place this inside the http block, server block or location block. If you place it in the http block it would disable it by default for all of the virtual hosts on that server. You can however override the setting in the server block by placing the same option inside a http block.

link|improve this answer
What is shown instead if I turn off 'friendly' error pages? Is that error info still logged to somewhere on my server? What about showing a custom error page instead (e.g. twitter's failwhale)? – Bee Dec 24 '11 at 23:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.