mirror of
https://gitlab.com/niansa/simpsh-httpd.git
synced 2025-03-06 20:53:36 +01:00
8 lines
210 B
Bash
Executable file
8 lines
210 B
Bash
Executable file
#! /bin/bash
|
|
|
|
# Generation of the HTTP-headers
|
|
echo "$STATUS" >> $OUTFILE
|
|
echo 'Date: '"$(date)" >> $OUTFILE
|
|
echo 'Server: httpd' >> $OUTFILE
|
|
echo 'Content-Type: '"$CONTENTTYPE" >> $OUTFILE
|
|
echo '' >> $OUTFILE
|