From 59bcef5c27540527fc4ca1007e9cfea5783ba233 Mon Sep 17 00:00:00 2001 From: Epoch Qwert Date: Thu, 27 Nov 2014 03:10:16 -0600 Subject: updated httpd.c to use different dirs for sites and vhosts updated gopherd.sh to use the new rdns script rdns script just wraps dig -x and outputs a real hostname instead of one ending with a '.' rebuild.sh got a cd added to the top so it can be run from somewhere else mime-type got an error line commented out. --- nocompile/bin/mime-type | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nocompile/bin/mime-type') diff --git a/nocompile/bin/mime-type b/nocompile/bin/mime-type index 71982d9..2b1bad0 100755 --- a/nocompile/bin/mime-type +++ b/nocompile/bin/mime-type @@ -4,10 +4,10 @@ MAIN="$(echo "${TYPE}" | cut -d/ -f1)" SUB="$(echo "${TYPE}" | cut -d/ -f2)" if [ "_${MAIN}" = "_inode" ];then printf "text/plain\r\n" - printf "this is a directory or symlink! wtf?!?" +# printf "this is a directory or symlink! wtf?!?" #ssssshhhhh TYPE="text/plain" fi -if [ "_${MAIN}" = "_text" -a "_${SUB}" != "_html"];then +if [ "_${MAIN}" = "_text" -a "_${SUB}" != "_html" ];then TYPE="text/plain" fi printf "%s\r\n" "$TYPE" -- cgit v1.2.3