How do you return 503 Service Unavailable in Rails for the entire application?
Also, how do you do the same for specific controllers?
|
How do you return 503 Service Unavailable in Rails for the entire application? Also, how do you do the same for specific controllers?
| ||||
|
feedback
|
|
For the entire application:
If you wanted a custom error page, you could do:
If you don't want it for specific controllers:
| |||||||
feedback
|
|
You can use
You can do it globally by putting it into ApplicationController
| |||
|
feedback
|