diff options
author | Teddy Wing | 2020-07-16 00:27:10 +0200 |
---|---|---|
committer | Teddy Wing | 2020-07-16 00:27:10 +0200 |
commit | aabde54acf646eaa5d0c4500115ff1805b027d1a (patch) | |
tree | 19ee1c144ca0d07224be7e3a2642bf21f4219ed1 /examples | |
parent | 0ddfedea3f89f20b100061037277671451b34c4a (diff) | |
download | fastcgi-conduit-aabde54acf646eaa5d0c4500115ff1805b027d1a.tar.bz2 |
server.rs: Fix HTTP status code header
I was getting persistent 500 errors on Apache with mod_fastcgi:
FastCGI: comm with server "/Applications/MAMP/htdocs/test.fcgi"
aborted: error parsing headers: malformed header 'HTTP/1.1 200 OK'
Forgot that you need to use a "Status" header for FastCGI to set the
HTTP status code, like:
Status: 404
This isn't an HTTP server. Apparently knew this at one point for the
DomeKey web site, but completely forgot.
Thanks to Ole (https://stackoverflow.com/users/312098/ole) and
RichieHindle (https://stackoverflow.com/users/21886/richiehindle) on
Stack Overflow for this question and answer that helped me figure it
out:
https://stackoverflow.com/questions/11223166/malformed-header-from-script-bad-header-http-1-1-302-found
Didn't notice this previously as I was using Lighttpd for testing, and
its FastCGI module must be more forgiving.
Diffstat (limited to 'examples')
0 files changed, 0 insertions, 0 deletions