Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I understand that I can set a file for a custom error page:

location / {
    error_page 404 = /mybad.html;
}

But I'd just like to instead provide my page override as text inline in the config file:

 location / {
    error_page 404 = "<H1>Sorry!</H1>"
}

Is this possible with nginx?

share|improve this question

1 Answer

up vote 2 down vote accepted
location / {
    error_page 404 @sorry;
}

location @sorry {
    return 404 "<H1>Sorry!</H1>";
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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