git: 9front

Download patch

ref: 42789bd94e6de8099e7954670ab53ed14c45d3c8
parent: 5846ec4854be1db8a8c693eecff43c3d510a3c0d
author: Alex Musolino <alex@musolino.id.au>
date: Thu Jun 20 12:26:03 EDT 2019

rc-httpd: serve markdown with text/plain content-type

--- a/rc/bin/rc-httpd/handlers/serve-static
+++ b/rc/bin/rc-httpd/handlers/serve-static
@@ -22,7 +22,7 @@
         type=text/html
 case *.css
         type=text/css
-case *.txt
+case *.txt *.md
         type=text/plain
 case *.jpg *.jpeg
         type=image/jpeg
--