mirror of
https://github.com/flant/ovpn-admin.git
synced 2026-02-04 01:10:22 -08:00
12 lines
169 B
Bash
Executable File
12 lines
169 B
Bash
Executable File
#!/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
|