summaryrefslogtreecommitdiff
path: root/docker/docker-entrypoint.sh
diff options
context:
space:
mode:
authorthrowaway <developerthrowaway@protonmail.com>2024-04-24 16:11:49 -0700
committerthrowaway <developerthrowaway@protonmail.com>2024-04-24 16:11:49 -0700
commit3a220d38b56af1286fe978f55c947eb514cadc1a (patch)
tree8d11990b79f304126367caf4f3dd5a380befb8d7 /docker/docker-entrypoint.sh
parent81dc93802c32aa6f593a12b3f2efbe38dc9e31f7 (diff)
fix treatment of config values with default of null and add php sodium
Diffstat (limited to 'docker/docker-entrypoint.sh')
-rwxr-xr-xdocker/docker-entrypoint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/docker-entrypoint.sh b/docker/docker-entrypoint.sh
index bdb706a..66d4067 100755
--- a/docker/docker-entrypoint.sh
+++ b/docker/docker-entrypoint.sh
@@ -9,7 +9,7 @@ FOURGET_PROTO="${FOURGET_PROTO#\"}"
FOURGET_PROTO=`echo $FOURGET_PROTO | awk '{print tolower($0)}'`
-if [ "$FOURGET_PROTO" = "https" ] || [ -f /etc/4get/certs/fullchain.pem ] || [ -f /etc/4get/certs/privkey.pem ]; then
+if [ "$FOURGET_PROTO" = "https" ]; then
echo "Using https configuration"
cp /etc/apache2/https.conf /etc/apache2/httpd.conf
else