mirror of
https://github.com/flant/ovpn-admin.git
synced 2026-02-04 09:12:13 -08:00
12 lines
169 B
Bash
12 lines
169 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
if [ ! -f .env ]; then
|
||
|
|
echo "Please create a .env file"
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
source .env
|
||
|
|
|
||
|
|
|
||
|
|
envsubst < ./nginx/default.conf.tpl > ./nginx/default.conf
|