1
0
Fork 0
mirror of synced 2024-06-16 22:31:09 -04:00
ovpn-admin/reconfigure.sh

14 lines
199 B
Bash
Raw Normal View History

2024-01-01 12:14:00 -05:00
#!/usr/bin/env bash
2024-01-01 13:00:20 -05:00
set -eo pipefail
2024-01-01 12:14:00 -05:00
if [ ! -f .env ]; then
echo "Please create a .env file"
exit 1
fi
2024-01-01 12:52:35 -05:00
set -a
2024-01-01 12:14:00 -05:00
source .env
2024-01-01 12:52:35 -05:00
set +a
2024-01-01 12:14:00 -05:00
envsubst < ./nginx/default.conf.tpl > ./nginx/default.conf