14 lines
270 B
Bash
Executable file
14 lines
270 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
|
|
if [ ! -f .env ]; then
|
|
echo "Please create a .env file"
|
|
exit 1
|
|
fi
|
|
|
|
set -a
|
|
source .env
|
|
set +a
|
|
|
|
envsubst < ./nginx/default.conf.tpl > ./nginx/default.conf
|
|
envsubst < ./ovpn_config/openvpn.conf.tpl > ./ovpn_config/openvpn.conf
|