Much more work on the README file; added PNG to the list of file formats the http handler knows about.

This commit is contained in:
simon 2016-03-08 19:17:10 +00:00
parent 5b5f3f450f
commit e1b3addcdd
2 changed files with 35 additions and 0 deletions

View file

@ -56,10 +56,12 @@ then
case $ftype in
"HTML" ) type=text/html;;
"ascii" ) type=text/plain;;
"ASCII" ) type=text/plain;;
"english" ) type=text/plain;;
"a" ) type=text/plain;; # probably a shell script!
"GIF" ) type=image/gif;;
"JPEG" ) type=image/jpeg;;
"PNG" ) type=image/png;;
* ) type=x-unknown/unknown;;
esac