2023-08-23 18:31:08 -05:00
|
|
|
#!/bin/sh
|
2023-08-24 20:50:05 -05:00
|
|
|
set -e
|
2024-03-22 02:34:50 -05:00
|
|
|
|
|
|
|
# remove quotes from variable if present
|
|
|
|
FOURGET_PROTO="${FOURGET_PROTO%\"}"
|
|
|
|
FOURGET_PROTO="${FOURGET_PROTO#\"}"
|
|
|
|
|
2024-04-19 15:47:02 -05:00
|
|
|
# make lowercase
|
|
|
|
FOURGET_PROTO=`echo $FOURGET_PROTO | awk '{print tolower($0)}'`
|
|
|
|
|
|
|
|
|
2024-03-22 02:34:50 -05:00
|
|
|
if [ "$FOURGET_PROTO" = "https" ] || [ -f /etc/4get/certs/fullchain.pem ] || [ -f /etc/4get/certs/privkey.pem ]; then
|
2024-02-09 04:59:25 -05:00
|
|
|
echo "Using https configuration"
|
|
|
|
cp /etc/apache2/https.conf /etc/apache2/httpd.conf
|
2024-03-22 02:34:50 -05:00
|
|
|
else
|
|
|
|
echo "Using http configuration"
|
|
|
|
cp /etc/apache2/http.conf /etc/apache2/httpd.conf
|
2023-09-22 16:20:39 -05:00
|
|
|
fi
|
|
|
|
|
2024-03-22 02:34:50 -05:00
|
|
|
php ./docker/gen_config.php
|
2024-01-09 02:14:27 -05:00
|
|
|
|
|
|
|
|
2023-09-22 16:20:39 -05:00
|
|
|
echo "4get is running"
|
2023-08-24 20:50:05 -05:00
|
|
|
exec httpd -DFOREGROUND
|
2023-09-22 16:20:39 -05:00
|
|
|
|