2023-08-23 23:31:08 +00:00
|
|
|
#!/bin/sh
|
2023-08-25 01:50:05 +00:00
|
|
|
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)}'`
|
|
|
|
|
|
|
|
|
2024-04-24 23:11:49 +00:00
|
|
|
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
|
2023-09-22 21:20:39 +00:00
|
|
|
fi
|
|
|
|
|
2024-03-22 07:34:50 +00:00
|
|
|
php ./docker/gen_config.php
|
2024-01-09 07:14:27 +00:00
|
|
|
|
|
|
|
|
2023-09-22 21:20:39 +00:00
|
|
|
echo "4get is running"
|
2023-08-25 01:50:05 +00:00
|
|
|
exec httpd -DFOREGROUND
|
2023-09-22 21:20:39 +00:00
|
|
|
|