summaryrefslogtreecommitdiff
path: root/flup
diff options
context:
space:
mode:
Diffstat (limited to 'flup')
-rw-r--r--flup/server/ajp_base.py6
-rw-r--r--flup/server/fcgi_base.py6
-rw-r--r--flup/server/scgi_base.py6
3 files changed, 12 insertions, 6 deletions
diff --git a/flup/server/ajp_base.py b/flup/server/ajp_base.py
index 7f622fc..52c003d 100644
--- a/flup/server/ajp_base.py
+++ b/flup/server/ajp_base.py
@@ -960,7 +960,8 @@ class BaseAJPServer(object):
all errors should be caught at the application level.
"""
if self.debug:
- request.startResponse(200, 'OK', [('Content-Type', 'text/html')])
+ request.startResponse(500, 'Internal Server Error',
+ [('Content-Type', 'text/html')])
import cgitb
request.write(cgitb.html(sys.exc_info()))
else:
@@ -972,5 +973,6 @@ class BaseAJPServer(object):
<p>An unhandled exception was thrown by the application.</p>
</body></html>
"""
- request.startResponse(200, 'OK', [('Content-Type', 'text/html')])
+ request.startResponse(500, 'Internal Server Error',
+ [('Content-Type', 'text/html')])
request.write(errorpage)
diff --git a/flup/server/fcgi_base.py b/flup/server/fcgi_base.py
index 9b976c8..f4b9753 100644
--- a/flup/server/fcgi_base.py
+++ b/flup/server/fcgi_base.py
@@ -1214,7 +1214,8 @@ class BaseFCGIServer(object):
"""
if self.debug:
import cgitb
- req.stdout.write('Content-Type: text/html\r\n\r\n' +
+ req.stdout.write('Status: 500 Internal Server Error\r\n' +
+ 'Content-Type: text/html\r\n\r\n' +
cgitb.html(sys.exc_info()))
else:
errorpage = """<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
@@ -1225,5 +1226,6 @@ class BaseFCGIServer(object):
<p>An unhandled exception was thrown by the application.</p>
</body></html>
"""
- req.stdout.write('Content-Type: text/html\r\n\r\n' +
+ req.stdout.write('Status: 500 Internal Server Error\r\n' +
+ 'Content-Type: text/html\r\n\r\n' +
errorpage)
diff --git a/flup/server/scgi_base.py b/flup/server/scgi_base.py
index f941deb..199f82b 100644
--- a/flup/server/scgi_base.py
+++ b/flup/server/scgi_base.py
@@ -550,7 +550,8 @@ class BaseSCGIServer(object):
"""
if self.debug:
import cgitb
- request.stdout.write('Content-Type: text/html\r\n\r\n' +
+ request.stdout.write('Status: 500 Internal Server Error\r\n' +
+ 'Content-Type: text/html\r\n\r\n' +
cgitb.html(sys.exc_info()))
else:
errorpage = """<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
@@ -561,5 +562,6 @@ class BaseSCGIServer(object):
<p>An unhandled exception was thrown by the application.</p>
</body></html>
"""
- request.stdout.write('Content-Type: text/html\r\n\r\n' +
+ request.stdout.write('Status: 500 Internal Server Error\r\n' +
+ 'Content-Type: text/html\r\n\r\n' +
errorpage)