forked from lolcat/4get
1
0
Fork 0
4get/docker/docker-entrypoint.sh

26 lines
540 B
Bash
Raw Normal View History

#!/bin/sh
set -e
2024-03-22 07:34:50 +00:00
# remove quotes from variable if present
FOURGET_PROTO="${FOURGET_PROTO%\"}"
FOURGET_PROTO="${FOURGET_PROTO#\"}"
2024-04-19 20:47:02 +00:00
# make lowercase
FOURGET_PROTO=`echo $FOURGET_PROTO | awk '{print tolower($0)}'`
if [ "$FOURGET_PROTO" = "https" ]; then
2024-02-09 09:59:25 +00:00
echo "Using https configuration"
cp /etc/apache2/https.conf /etc/apache2/httpd.conf
2024-03-22 07:34:50 +00:00
else
echo "Using http configuration"
cp /etc/apache2/http.conf /etc/apache2/httpd.conf
fi
2024-03-22 07:34:50 +00:00
php ./docker/gen_config.php
echo "4get is running"
exec httpd -DFOREGROUND