mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-01-17 04:56:18 +00:00
25 lines
937 B
Bash
25 lines
937 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Lets wait for the DNS container to start
|
|
sleep 5
|
|
|
|
# Starts each WireGuard configuration file found in /etc/wireguard
|
|
shopt -s nullglob
|
|
config_files=(/etc/wireguard/*.conf)
|
|
if [ ${#config_files[@]} -gt 0 ]; then
|
|
for f in "${config_files[@]}"; do
|
|
wg-quick up "$(basename "${f}" .conf)"
|
|
done
|
|
fi
|
|
|
|
# Django startup
|
|
python manage.py migrate --noinput
|
|
python manage.py collectstatic --noinput
|
|
if [[ "${DEV_MODE,,}" == "true" ]]; then
|
|
echo "DEV_MODE=true -> Starting Gunicorn with auto-reload"
|
|
exec gunicorn wireguard_webadmin.wsgi:application --bind 0.0.0.0:8000 --workers 2 --threads 2 --timeout 60 --log-level info --capture-output --access-logfile - --error-logfile - --reload
|
|
else
|
|
echo "Starting Gunicorn"
|
|
exec gunicorn wireguard_webadmin.wsgi:application --bind 0.0.0.0:8000 --workers 2 --threads 2 --timeout 60 --log-level info --capture-output --access-logfile - --error-logfile -
|
|
fi |