mirror of
https://gitlab.com/niansa/simpsh-httpd.git
synced 2025-03-06 20:53:36 +01:00
16 lines
376 B
Bash
16 lines
376 B
Bash
#! /bin/bash
|
|
|
|
# Überprüfe: Muss eine Dateiliste ausgegeben werden? Ist es ein PHP-script?
|
|
if [[ "$FILE" == *.php ]]; then
|
|
CONTENTTYPE="text/html"
|
|
. ./httpheaders.sh
|
|
php "$FILE" >> $OUTFILE
|
|
elif [ -f "${FILE}" ]; then
|
|
CONTENTTYPE="$DEFAULTCONTENTTYPE"
|
|
. ./httpheaders.sh
|
|
cat "${FILE}" >> ${OUTFILE}
|
|
else
|
|
CONTENTTYPE="text/html"
|
|
. ./httpheaders.sh
|
|
. ./filelist.sh
|
|
fi
|