How do you return 503 Service Unavailable in Rails for the entire application?

Also, how do you do the same for specific controllers?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

For the entire application:

# ApplicationController
before_filter :return_unavailable_status

private
  def return_unavailable_status
    render :nothing => true, :status => :service_unavailable
  end

If you wanted a custom error page, you could do:

render 'custom_unavailable_page', :status => :service_unavailable    

If you don't want it for specific controllers:

# SomeController
skip_before_filter :return_unavailable_status
link|improve this answer
To display a custom downpage shall I use, render "custom_unavailable_page", instead of render :nothing => true – Sathish Manohar Jan 17 at 6:39
1  
@SathishManohar Exactly. custom_unavailable_page would be the name of the view file that you would render. – iWasRobbed Jan 17 at 6:52
feedback

You can use :status

render :status => 503

You can do it globally by putting it into ApplicationController

before_filter :render_unavailable

def render_unavailable
  render :nothing => true, :status => 503
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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