git: 9front

Download patch

ref: 74521987445ac78c20d0ca7021230e927864b62a
parent: 5765761c5fe1cb2ec6a858130898cfcbe61221ff
author: stanley lieber <stanley.lieber@gmail.com>
date: Fri Feb 21 21:24:37 EST 2014

rc-httpd/handlers/serve-static: restore Content-length

--- a/rc/bin/rc-httpd/handlers/serve-static
+++ b/rc/bin/rc-httpd/handlers/serve-static
@@ -25,6 +25,7 @@
 echo 'HTTP/1.1 200 OK'^$cr
 emit_extra_headers
 echo 'Content-type: '^$type^'; charset=utf-8'^$cr
+echo 'Content-length: '^`{ls -l $full_path | awk '{print $6}'}
 echo 'Cache-control: max-age='^$max_age^$cr
 echo $cr
 exec cat $full_path
--