# HG changeset patch # User Igor Sysoev # Date 1296577135 0 # Node ID 39ad979cd31e67f1703fa080fcd4a13ae52142a8 # Parent 30d4d61873164a174bbe46fe3fa049b51b7a9dbb fix "error_page 497 https://" case patch by Maxim Dounin the bug has been introduced in r3782 diff --git a/src/http/ngx_http_special_response.c b/src/http/ngx_http_special_response.c --- a/src/http/ngx_http_special_response.c +++ b/src/http/ngx_http_special_response.c @@ -570,7 +570,14 @@ ngx_http_send_error_page(ngx_http_reques return NGX_ERROR; } - r->err_status = overwrite > 0 ? overwrite : NGX_HTTP_MOVED_TEMPORARILY; + if (overwrite >= NGX_HTTP_MOVED_PERMANENTLY + && overwrite <= NGX_HTTP_SEE_OTHER) + { + r->err_status = overwrite; + + } else { + r->err_status = NGX_HTTP_MOVED_TEMPORARILY; + } location->hash = 1; ngx_str_set(&location->key, "Location");