mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
aa2f797f6f
resolves #4838 Fixes an issue with the log symlink as well
82 lines
2.4 KiB
Bash
82 lines
2.4 KiB
Bash
#!/bin/ash -e
|
|
cd /app
|
|
|
|
mkdir -p /var/log/panel/logs/ /var/log/supervisord/ /var/log/nginx/ /var/log/php7/ \
|
|
&& chmod 777 /var/log/panel/logs/ \
|
|
&& ln -s /app/storage/logs/ /var/log/panel/
|
|
|
|
## check for .env file and generate app keys if missing
|
|
if [ -f /app/var/.env ]; then
|
|
echo "external vars exist."
|
|
rm -rf /app/.env
|
|
ln -s /app/var/.env /app/
|
|
else
|
|
echo "external vars don't exist."
|
|
rm -rf /app/.env
|
|
touch /app/var/.env
|
|
|
|
## manually generate a key because key generate --force fails
|
|
if [ -z $APP_KEY ]; then
|
|
echo -e "Generating key."
|
|
APP_KEY=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
|
|
echo -e "Generated app key: $APP_KEY"
|
|
echo -e "APP_KEY=$APP_KEY" > /app/var/.env
|
|
else
|
|
echo -e "APP_KEY exists in environment, using that."
|
|
echo -e "APP_KEY=$APP_KEY" > /app/var/.env
|
|
fi
|
|
|
|
ln -s /app/var/.env /app/
|
|
fi
|
|
|
|
echo "Checking if https is required."
|
|
if [ -f /etc/nginx/http.d/panel.conf ]; then
|
|
echo "Using nginx config already in place."
|
|
if [ $LE_EMAIL ]; then
|
|
echo "Checking for cert update"
|
|
certbot certonly -d $(echo $APP_URL | sed 's~http[s]*://~~g') --standalone -m $LE_EMAIL --agree-tos -n
|
|
else
|
|
echo "No letsencrypt email is set"
|
|
fi
|
|
else
|
|
echo "Checking if letsencrypt email is set."
|
|
if [ -z $LE_EMAIL ]; then
|
|
echo "No letsencrypt email is set using http config."
|
|
cp .github/docker/default.conf /etc/nginx/http.d/panel.conf
|
|
else
|
|
echo "writing ssl config"
|
|
cp .github/docker/default_ssl.conf /etc/nginx/http.d/panel.conf
|
|
echo "updating ssl config for domain"
|
|
sed -i "s|<domain>|$(echo $APP_URL | sed 's~http[s]*://~~g')|g" /etc/nginx/http.d/panel.conf
|
|
echo "generating certs"
|
|
certbot certonly -d $(echo $APP_URL | sed 's~http[s]*://~~g') --standalone -m $LE_EMAIL --agree-tos -n
|
|
fi
|
|
echo "Removing the default nginx config"
|
|
rm -rf /etc/nginx/http.d/default.conf
|
|
fi
|
|
|
|
if [[ -z $DB_PORT ]]; then
|
|
echo -e "DB_PORT not specified, defaulting to 3306"
|
|
DB_PORT=3306
|
|
fi
|
|
|
|
## check for DB up before starting the panel
|
|
echo "Checking database status."
|
|
until nc -z -v -w30 $DB_HOST $DB_PORT
|
|
do
|
|
echo "Waiting for database connection..."
|
|
# wait for 1 seconds before check again
|
|
sleep 1
|
|
done
|
|
|
|
## make sure the db is set up
|
|
echo -e "Migrating and Seeding D.B"
|
|
php artisan migrate --seed --force
|
|
|
|
## start cronjobs for the queue
|
|
echo -e "Starting cron jobs."
|
|
crond -L /var/log/crond -l 5
|
|
|
|
echo -e "Starting supervisord."
|
|
exec "$@"
|