1
Fork 1
mirror of https://git.lolcat.ca/lolcat/4get.git synced 2024-09-13 17:28:08 -04:00
4get/docker/docker-entrypoint.sh
2024-02-09 01:59:25 -08:00

16 lines
392 B
Bash
Executable file

#!/bin/sh
set -e
if [ ! -f /etc/4get/certs/fullchain.pem ] || [ ! -f /etc/4get/certs/privkey.pem ]; then
echo "Using http configuration"
cp /etc/apache2/http.conf /etc/apache2/httpd.conf
else
echo "Using https configuration"
cp /etc/apache2/https.conf /etc/apache2/httpd.conf
fi
php82 ./docker/gen_config.php
echo "4get is running"
exec httpd -DFOREGROUND