comparison src/http/ngx_http_special_response.c @ 233:4eaafcd57be7

nginx-0.0.1-2004-01-19-21:09:14 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 19 Jan 2004 18:09:14 +0000
parents 9f3a78b06c48
children 87e73f067470
comparison
equal deleted inserted replaced
232:03c54b6d7a6f 233:4eaafcd57be7
105 static char error_500_page[] = 105 static char error_500_page[] =
106 "<html>" CRLF 106 "<html>" CRLF
107 "<head><title>500 Internal Server Error</title></head>" CRLF 107 "<head><title>500 Internal Server Error</title></head>" CRLF
108 "<body bgcolor=\"white\">" CRLF 108 "<body bgcolor=\"white\">" CRLF
109 "<center><h1>500 Internal Server Error</h1></center>" CRLF 109 "<center><h1>500 Internal Server Error</h1></center>" CRLF
110 ;
111
112
113 static char error_501_page[] =
114 "<html>" CRLF
115 "<head><title>501 Method Not Implemented</title></head>" CRLF
116 "<body bgcolor=\"white\">" CRLF
117 "<center><h1>500 Method Not Implemented</h1></center>" CRLF
110 ; 118 ;
111 119
112 120
113 static char error_502_page[] = 121 static char error_502_page[] =
114 "<html>" CRLF 122 "<html>" CRLF
157 ngx_string(error_414_page), 165 ngx_string(error_414_page),
158 ngx_null_string, /* 415 */ 166 ngx_null_string, /* 415 */
159 ngx_string(error_416_page), 167 ngx_string(error_416_page),
160 168
161 ngx_string(error_500_page), 169 ngx_string(error_500_page),
162 ngx_null_string, /* 501 */ 170 ngx_string(error_501_page),
163 ngx_string(error_502_page), 171 ngx_string(error_502_page),
164 ngx_string(error_503_page), 172 ngx_string(error_503_page),
165 ngx_string(error_504_page) 173 ngx_string(error_504_page)
166 }; 174 };
167 175